github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Outputs/BillingMeterDetailsResponse.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 /// Holds billing meter details for each type of billing 15 /// </summary> 16 [OutputType] 17 public sealed class BillingMeterDetailsResponse 18 { 19 /// <summary> 20 /// Frequency of recurrence 21 /// </summary> 22 public readonly string Frequency; 23 /// <summary> 24 /// Represents MeterDetails 25 /// </summary> 26 public readonly Union<Outputs.Pav2MeterDetailsResponse, Outputs.PurchaseMeterDetailsResponse> MeterDetails; 27 /// <summary> 28 /// Represents Metering type (eg one-time or recurrent) 29 /// </summary> 30 public readonly string MeteringType; 31 /// <summary> 32 /// Represents Billing type name 33 /// </summary> 34 public readonly string Name; 35 36 [OutputConstructor] 37 private BillingMeterDetailsResponse( 38 string frequency, 39 40 Union<Outputs.Pav2MeterDetailsResponse, Outputs.PurchaseMeterDetailsResponse> meterDetails, 41 42 string meteringType, 43 44 string name) 45 { 46 Frequency = frequency; 47 MeterDetails = meterDetails; 48 MeteringType = meteringType; 49 Name = name; 50 } 51 } 52 }