/// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse400" /> class.
 /// </summary>
 /// <param name="ClientConfigureRejectTransaction">ClientConfigureRejectTransaction.</param>
 /// <param name="LastTransactionID">The ID of the last Transaction created for the Account..</param>
 /// <param name="ErrorCode">The code of the error that has occurred. This field may not be returned for some errors..</param>
 /// <param name="ErrorMessage">The human-readable description of the error that has occurred..</param>
 public InlineResponse400(ClientConfigureRejectTransaction ClientConfigureRejectTransaction = default(ClientConfigureRejectTransaction), string LastTransactionID = default(string), string ErrorCode = default(string), string ErrorMessage = default(string))
 {
     this.ClientConfigureRejectTransaction = ClientConfigureRejectTransaction;
     this.LastTransactionID = LastTransactionID;
     this.ErrorCode         = ErrorCode;
     this.ErrorMessage      = ErrorMessage;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountConfigurationForbiddenResponse" /> class.
 /// </summary>
 /// <param name="clientConfigureRejectTransaction">clientConfigureRejectTransaction.</param>
 /// <param name="errorCode">The code of the error that has occurred. This field may not be returned for some errors..</param>
 /// <param name="errorMessage">The human-readable description of the error that has occurred..</param>
 /// <param name="lastTransactionID">The ID of the most recent Transaction created for the Account.</param>
 /// <param name="relatedTransactionIDs">The IDs of all Transactions that were created while satisfying the request..</param>
 public AccountConfigurationForbiddenResponse(ClientConfigureRejectTransaction clientConfigureRejectTransaction = default(ClientConfigureRejectTransaction), string errorCode = default(string), string errorMessage = default(string), int lastTransactionID = default(int), List <int> relatedTransactionIDs = default(List <int>))
 {
     this.ClientConfigureRejectTransaction = clientConfigureRejectTransaction;
     this.ErrorCode             = errorCode;
     this.ErrorMessage          = errorMessage;
     this.LastTransactionID     = lastTransactionID;
     this.RelatedTransactionIDs = relatedTransactionIDs;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountConfigurationBadRequestResponseAllOf" /> class.
 /// </summary>
 /// <param name="clientConfigureRejectTransaction">clientConfigureRejectTransaction.</param>
 public AccountConfigurationBadRequestResponseAllOf(ClientConfigureRejectTransaction clientConfigureRejectTransaction = default(ClientConfigureRejectTransaction))
 {
     this.ClientConfigureRejectTransaction = clientConfigureRejectTransaction;
 }