public SearchCustomersRequest(string cursor = null,
                               long?limit    = null,
                               Models.CustomerQuery query = null)
 {
     Cursor = cursor;
     Limit  = limit;
     Query  = query;
 }
 public Builder Query(Models.CustomerQuery value)
 {
     query = value;
     return(this);
 }
 public Builder Query(Models.CustomerQuery query)
 {
     this.query = query;
     return(this);
 }