Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the AccountItemsShowResponse class.
 /// </summary>
 public AccountItemsShowResponse(AccountItem accountItem)
 {
     AccountItem = accountItem;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountItemsShowResponse" /> class.
 /// </summary>
 /// <param name="accountItem">accountItem (required).</param>
 public AccountItemsShowResponse(AccountItem accountItem = default(AccountItem))
 {
     // to ensure "accountItem" is required (not null)
     this.AccountItem = accountItem ?? throw new ArgumentNullException("accountItem is a required property for AccountItemsShowResponse and cannot be null");;
 }
 /// <summary>
 /// Initializes a new instance of the AccountItemsUpdateResponse class.
 /// </summary>
 public AccountItemsUpdateResponse(AccountItem accountItem)
 {
     AccountItem = accountItem;
     CustomInit();
 }