github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Outputs/Pav2MeterDetailsResponse.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 PAV2 meter details 15 /// </summary> 16 [OutputType] 17 public sealed class Pav2MeterDetailsResponse 18 { 19 /// <summary> 20 /// Represents billing type. 21 /// Expected value is 'Pav2'. 22 /// </summary> 23 public readonly string BillingType; 24 /// <summary> 25 /// Charging type. 26 /// </summary> 27 public readonly string ChargingType; 28 /// <summary> 29 /// Validation status of requested data center and transport. 30 /// </summary> 31 public readonly string MeterGuid; 32 /// <summary> 33 /// Billing unit applicable for Pav2 billing 34 /// </summary> 35 public readonly double Multiplier; 36 37 [OutputConstructor] 38 private Pav2MeterDetailsResponse( 39 string billingType, 40 41 string chargingType, 42 43 string meterGuid, 44 45 double multiplier) 46 { 47 BillingType = billingType; 48 ChargingType = chargingType; 49 MeterGuid = meterGuid; 50 Multiplier = multiplier; 51 } 52 } 53 }