github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Outputs/PurchaseMeterDetailsResponse.cs (about) 1 // *** WARNING: this file was generated by test. *** 2 // *** Do not edit by hand unless you're certain you know what you are doing! *** 3 4 using System; 5 using System.Collections.Generic; 6 using System.Collections.Immutable; 7 using System.Threading.Tasks; 8 using Pulumi.Serialization; 9 10 namespace Pulumi.Myedgeorder.Outputs 11 { 12 13 /// <summary> 14 /// Billing type Purchase meter details 15 /// </summary> 16 [OutputType] 17 public sealed class PurchaseMeterDetailsResponse 18 { 19 /// <summary> 20 /// Represents billing type. 21 /// Expected value is 'Purchase'. 22 /// </summary> 23 public readonly string BillingType; 24 /// <summary> 25 /// Charging type. 26 /// </summary> 27 public readonly string ChargingType; 28 /// <summary> 29 /// Billing unit applicable for Pav2 billing 30 /// </summary> 31 public readonly double Multiplier; 32 /// <summary> 33 /// Product Id 34 /// </summary> 35 public readonly string ProductId; 36 /// <summary> 37 /// Sku Id 38 /// </summary> 39 public readonly string SkuId; 40 /// <summary> 41 /// Term Id 42 /// </summary> 43 public readonly string TermId; 44 45 [OutputConstructor] 46 private PurchaseMeterDetailsResponse( 47 string billingType, 48 49 string chargingType, 50 51 double multiplier, 52 53 string productId, 54 55 string skuId, 56 57 string termId) 58 { 59 BillingType = billingType; 60 ChargingType = chargingType; 61 Multiplier = multiplier; 62 ProductId = productId; 63 SkuId = skuId; 64 TermId = termId; 65 } 66 } 67 }