/// <summary>
 /// Initializes a new instance of the <see cref="BillingPlanUpdateResponse" /> class.
 /// </summary>
 /// <param name="AccountPaymentMethod">.</param>
 /// <param name="BillingPlanPreview">.</param>
 /// <param name="CurrencyCode">Specifies the ISO currency code for the account..</param>
 /// <param name="IncludedSeats">The number of seats (users) included..</param>
 /// <param name="PaymentCycle">.</param>
 /// <param name="PaymentMethod">.</param>
 /// <param name="PlanId">The DocuSign Plan ID for the account..</param>
 /// <param name="PlanName">.</param>
 public BillingPlanUpdateResponse(string AccountPaymentMethod = null, BillingPlanPreview BillingPlanPreview = null, string CurrencyCode = null, string IncludedSeats = null, string PaymentCycle = null, string PaymentMethod = null, string PlanId = null, string PlanName = null)
 {
     this.AccountPaymentMethod = AccountPaymentMethod;
     this.BillingPlanPreview   = BillingPlanPreview;
     this.CurrencyCode         = CurrencyCode;
     this.IncludedSeats        = IncludedSeats;
     this.PaymentCycle         = PaymentCycle;
     this.PaymentMethod        = PaymentMethod;
     this.PlanId   = PlanId;
     this.PlanName = PlanName;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NewAccountSummary" /> class.
 /// </summary>
 /// <param name="AccountId">The account ID associated with the envelope..</param>
 /// <param name="AccountIdGuid">The GUID associated with the account ID..</param>
 /// <param name="AccountName">The account name for the new account..</param>
 /// <param name="ApiPassword">Contains a token that can be used for authentication in API calls instead of using the user name and password..</param>
 /// <param name="BaseUrl">The URL that should be used for successive calls to this account. It includes the protocal (https), the DocuSign server where the account is located, and the account number. Use this Url to make API calls against this account. Many of the API calls provide Uri&#39;s that are relative to this baseUrl..</param>
 /// <param name="BillingPlanPreview">.</param>
 /// <param name="UserId">Specifies the user ID of the new user..</param>
 public NewAccountSummary(string AccountId = null, string AccountIdGuid = null, string AccountName = null, string ApiPassword = null, string BaseUrl = null, BillingPlanPreview BillingPlanPreview = null, string UserId = null)
 {
     this.AccountId          = AccountId;
     this.AccountIdGuid      = AccountIdGuid;
     this.AccountName        = AccountName;
     this.ApiPassword        = ApiPassword;
     this.BaseUrl            = BaseUrl;
     this.BillingPlanPreview = BillingPlanPreview;
     this.UserId             = UserId;
 }