Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WalletablesResponse" /> class.
 /// </summary>
 /// <param name="walletable">walletable (required).</param>
 public WalletablesResponse(Walletable walletable = default(Walletable))
 {
     // to ensure "walletable" is required (not null)
     this.Walletable = walletable ?? throw new ArgumentNullException("walletable is a required property for WalletablesResponse and cannot be null");;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse20019" /> class.
 /// </summary>
 /// <param name="meta">meta.</param>
 /// <param name="walletable">walletable (required).</param>
 public InlineResponse20019(InlineResponse20018Meta meta = default(InlineResponse20018Meta), Walletable walletable = default(Walletable))
 {
     // to ensure "walletable" is required (not null)
     this.Walletable = walletable ?? throw new ArgumentNullException("walletable is a required property for InlineResponse20019 and cannot be null");
     this.Meta       = meta;
 }