/// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse2003History" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="created">created.</param>
 /// <param name="documentId">documentId.</param>
 /// <param name="document">document.</param>
 /// <param name="recipient">recipient.</param>
 /// <param name="status">The status of the fax job.</param>
 public InlineResponse2003History(int?id = default(int?), InlineResponse2003Created created = default(InlineResponse2003Created), int?documentId = default(int?), string document = default(string), string recipient = default(string), string status = default(string))
 {
     this.Id         = id;
     this.Created    = created;
     this.DocumentId = documentId;
     this.Document   = document;
     this.Recipient  = recipient;
     this.Status     = status;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse2004Inbox" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="didId">didId.</param>
 /// <param name="filename">filename.</param>
 /// <param name="filesize">filesize.</param>
 /// <param name="number">number.</param>
 /// <param name="sender">sender.</param>
 /// <param name="totalPages">totalPages.</param>
 /// <param name="createdAt">createdAt.</param>
 /// <param name="previewFile">previewFile.</param>
 /// <param name="fileUrl">fileUrl.</param>
 public InlineResponse2004Inbox(int?id = default(int?), int?didId = default(int?), string filename = default(string), string filesize = default(string), string number = default(string), string sender = default(string), int?totalPages = default(int?), InlineResponse2003Created createdAt = default(InlineResponse2003Created), string previewFile = default(string), string fileUrl = default(string))
 {
     this.Id          = id;
     this.DidId       = didId;
     this.Filename    = filename;
     this.Filesize    = filesize;
     this.Number      = number;
     this.Sender      = sender;
     this.TotalPages  = totalPages;
     this.CreatedAt   = createdAt;
     this.PreviewFile = previewFile;
     this.FileUrl     = fileUrl;
 }