Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse2003KeyInformation" /> class.
 /// </summary>
 /// <param name="OrganizationId">Merchant Id .</param>
 /// <param name="ReferenceNumber">Reference number is a unique identifier provided by the client along with the organization Id. This is an optional field provided solely for the client’s convenience. If client specifies value for this field in the request, it is expected to be available in the response. .</param>
 /// <param name="KeyId">Key Serial Number .</param>
 /// <param name="Status">The status of the key.  Possible values:  - FAILED  - ACTIVE  - INACTIVE  - EXPIRED .</param>
 /// <param name="Message">message in case of failed key.</param>
 /// <param name="ErrorInformation">ErrorInformation.</param>
 public InlineResponse2003KeyInformation(string OrganizationId = default(string), string ReferenceNumber = default(string), string KeyId = default(string), string Status = default(string), string Message = default(string), InlineResponse201ErrorInformation ErrorInformation = default(InlineResponse201ErrorInformation))
 {
     this.OrganizationId   = OrganizationId;
     this.ReferenceNumber  = ReferenceNumber;
     this.KeyId            = KeyId;
     this.Status           = Status;
     this.Message          = Message;
     this.ErrorInformation = ErrorInformation;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse200KeyInformation" /> class.
 /// </summary>
 /// <param name="OrganizationId">Merchant Id .</param>
 /// <param name="KeyId">Key serial number .</param>
 /// <param name="Status">The status of the key.  Possible values:  - FAILED  - ACTIVE  - INACTIVE  - EXPIRED .</param>
 /// <param name="ExpirationDate">The expiration time in UTC. .</param>
 /// <param name="Message">message in case of failed key .</param>
 /// <param name="ErrorInformation">ErrorInformation.</param>
 public InlineResponse200KeyInformation(string OrganizationId = default(string), string KeyId = default(string), string Status = default(string), string ExpirationDate = default(string), string Message = default(string), InlineResponse201ErrorInformation ErrorInformation = default(InlineResponse201ErrorInformation))
 {
     this.OrganizationId   = OrganizationId;
     this.KeyId            = KeyId;
     this.Status           = Status;
     this.ExpirationDate   = ExpirationDate;
     this.Message          = Message;
     this.ErrorInformation = ErrorInformation;
 }