public SearchShiftsRequest(Models.ShiftQuery query = null,
                            int?limit     = null,
                            string cursor = null)
 {
     Query  = query;
     Limit  = limit;
     Cursor = cursor;
 }
 public Builder Query(Models.ShiftQuery query)
 {
     this.query = query;
     return(this);
 }
Exemplo n.º 3
0
 public Builder Query(Models.ShiftQuery value)
 {
     query = value;
     return(this);
 }