コード例 #1
0
 public SearchOrdersDateTimeFilter(Models.TimeRange createdAt = null,
                                   Models.TimeRange updatedAt = null,
                                   Models.TimeRange closedAt  = null)
 {
     CreatedAt = createdAt;
     UpdatedAt = updatedAt;
     ClosedAt  = closedAt;
 }
コード例 #2
0
 public CustomerFilter(Models.CustomerCreationSourceFilter creationSource = null,
                       Models.TimeRange createdAt = null,
                       Models.TimeRange updatedAt = null)
 {
     CreationSource = creationSource;
     CreatedAt      = createdAt;
     UpdatedAt      = updatedAt;
 }
コード例 #3
0
 public TerminalRefundQueryFilter(string deviceId            = null,
                                  Models.TimeRange createdAt = null,
                                  string status = null)
 {
     DeviceId  = deviceId;
     CreatedAt = createdAt;
     Status    = status;
 }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TerminalCheckoutQueryFilter"/> class.
 /// </summary>
 /// <param name="deviceId">device_id.</param>
 /// <param name="createdAt">created_at.</param>
 /// <param name="status">status.</param>
 public TerminalCheckoutQueryFilter(
     string deviceId            = null,
     Models.TimeRange createdAt = null,
     string status = null)
 {
     this.DeviceId  = deviceId;
     this.CreatedAt = createdAt;
     this.Status    = status;
 }
コード例 #5
0
 public SearchAvailabilityFilter(Models.TimeRange startAtRange,
                                 string locationId = null,
                                 IList <Models.SegmentFilter> segmentFilters = null,
                                 string bookingId = null)
 {
     StartAtRange   = startAtRange;
     LocationId     = locationId;
     SegmentFilters = segmentFilters;
     BookingId      = bookingId;
 }
コード例 #6
0
 public CustomerFilter(Models.CustomerCreationSourceFilter creationSource = null,
                       Models.TimeRange createdAt  = null,
                       Models.TimeRange updatedAt  = null,
                       Models.FilterValue groupIds = null)
 {
     CreationSource = creationSource;
     CreatedAt      = createdAt;
     UpdatedAt      = updatedAt;
     GroupIds       = groupIds;
 }
コード例 #7
0
 public ShiftFilter(IList <string> locationIds = null,
                    IList <string> employeeIds = null,
                    string status               = null,
                    Models.TimeRange start      = null,
                    Models.TimeRange end        = null,
                    Models.ShiftWorkday workday = null)
 {
     LocationIds = locationIds;
     EmployeeIds = employeeIds;
     Status      = status;
     Start       = start;
     End         = end;
     Workday     = workday;
 }
コード例 #8
0
 public CustomerFilter(Models.CustomerCreationSourceFilter creationSource = null,
                       Models.TimeRange createdAt             = null,
                       Models.TimeRange updatedAt             = null,
                       Models.CustomerTextFilter emailAddress = null,
                       Models.CustomerTextFilter phoneNumber  = null,
                       Models.CustomerTextFilter referenceId  = null,
                       Models.FilterValue groupIds            = null)
 {
     CreationSource = creationSource;
     CreatedAt      = createdAt;
     UpdatedAt      = updatedAt;
     EmailAddress   = emailAddress;
     PhoneNumber    = phoneNumber;
     ReferenceId    = referenceId;
     GroupIds       = groupIds;
 }
コード例 #9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ShiftFilter"/> class.
 /// </summary>
 /// <param name="locationIds">location_ids.</param>
 /// <param name="teamMemberIds">team_member_ids.</param>
 /// <param name="employeeIds">employee_ids.</param>
 /// <param name="status">status.</param>
 /// <param name="start">start.</param>
 /// <param name="end">end.</param>
 /// <param name="workday">workday.</param>
 public ShiftFilter(
     IList <string> locationIds,
     IList <string> teamMemberIds,
     IList <string> employeeIds = null,
     string status               = null,
     Models.TimeRange start      = null,
     Models.TimeRange end        = null,
     Models.ShiftWorkday workday = null)
 {
     this.LocationIds   = locationIds;
     this.EmployeeIds   = employeeIds;
     this.Status        = status;
     this.Start         = start;
     this.End           = end;
     this.Workday       = workday;
     this.TeamMemberIds = teamMemberIds;
 }
コード例 #10
0
 public Builder ClosedAt(Models.TimeRange closedAt)
 {
     this.closedAt = closedAt;
     return(this);
 }
コード例 #11
0
 public Builder ClosedAt(Models.TimeRange value)
 {
     closedAt = value;
     return(this);
 }
コード例 #12
0
 public Builder UpdatedAt(Models.TimeRange updatedAt)
 {
     this.updatedAt = updatedAt;
     return(this);
 }
コード例 #13
0
 public Builder(Models.TimeRange startAtRange)
 {
     this.startAtRange = startAtRange;
 }
コード例 #14
0
 public Builder StartAtRange(Models.TimeRange startAtRange)
 {
     this.startAtRange = startAtRange;
     return(this);
 }
コード例 #15
0
 public Builder UpdatedAt(Models.TimeRange value)
 {
     updatedAt = value;
     return(this);
 }
コード例 #16
0
 public Builder CreatedAt(Models.TimeRange value)
 {
     createdAt = value;
     return(this);
 }
コード例 #17
0
 public Builder Start(Models.TimeRange value)
 {
     start = value;
     return(this);
 }
コード例 #18
0
 public Builder(Models.TimeRange createdAt)
 {
     this.createdAt = createdAt;
 }
コード例 #19
0
 public Builder End(Models.TimeRange value)
 {
     end = value;
     return(this);
 }
コード例 #20
0
 public LoyaltyEventDateTimeFilter(Models.TimeRange createdAt)
 {
     CreatedAt = createdAt;
 }
コード例 #21
0
 /// <summary>
 /// Start.
 /// </summary>
 /// <param name="start"> start. </param>
 /// <returns> Builder. </returns>
 public Builder Start(Models.TimeRange start)
 {
     this.start = start;
     return(this);
 }
コード例 #22
0
 public Builder CreatedAt(Models.TimeRange createdAt)
 {
     this.createdAt = createdAt;
     return(this);
 }
コード例 #23
0
 /// <summary>
 /// End.
 /// </summary>
 /// <param name="end"> end. </param>
 /// <returns> Builder. </returns>
 public Builder End(Models.TimeRange end)
 {
     this.end = end;
     return(this);
 }