Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the VersionedBillingPlan class.
 /// </summary>
 /// <param name="etag">The version of the object</param>
 public VersionedBillingPlan(BillingPlan document = default(BillingPlan), string etag = default(string))
 {
     Document = document;
     Etag     = etag;
     CustomInit();
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the BillingPlanSelection class.
 /// </summary>
 /// <param name="count">Number of instances of the billing
 /// plan.</param>
 public BillingPlanSelection(int?count = default(int?), BillingPlan plan = default(BillingPlan))
 {
     Count = count;
     Plan  = plan;
     CustomInit();
 }