public SearchInvoicesRequest(Models.InvoiceQuery query,
                              int?limit     = null,
                              string cursor = null)
 {
     Query  = query;
     Limit  = limit;
     Cursor = cursor;
 }
 /// <summary>
 /// Query.
 /// </summary>
 /// <param name="query"> query. </param>
 /// <returns> Builder. </returns>
 public Builder Query(Models.InvoiceQuery query)
 {
     this.query = query;
     return(this);
 }
 public Builder(
     Models.InvoiceQuery query)
 {
     this.query = query;
 }
 public Builder Query(Models.InvoiceQuery value)
 {
     query = value;
     return(this);
 }