Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AttachmentResponseData"/> class
 /// </summary>
 /// <param name="result">The description of the result.</param>
 public AttachmentResponseData(AttachmentResult result)
 {
     this.result = result;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AttachmentRequestAckTypeData"/> class
 /// </summary>
 /// <param name="status">The sub-type belonging to the global status.</param>
 /// <param name="result">The description of the result.</param>
 /// <param name="remainedWaitTimeMillis">It indicates how many milliseconds are left of the attachment obtainment time if the request cannot be served yet.</param>
 public AttachmentRequestAckTypeData(StatusCode status, AttachmentResult result, long?remainedWaitTimeMillis)
 {
     this.status = status;
     this.result = result;
     this.remainedWaitTimeMillis = remainedWaitTimeMillis;
 }