コード例 #1
0
 public BusinessBookingProfile(string sellerId               = null,
                               string createdAt              = null,
                               bool?bookingEnabled           = null,
                               string customerTimezoneChoice = null,
                               string bookingPolicy          = null,
                               bool?allowUserCancel          = null,
                               Models.BusinessAppointmentSettings businessAppointmentSettings = null)
 {
     SellerId                    = sellerId;
     CreatedAt                   = createdAt;
     BookingEnabled              = bookingEnabled;
     CustomerTimezoneChoice      = customerTimezoneChoice;
     BookingPolicy               = bookingPolicy;
     AllowUserCancel             = allowUserCancel;
     BusinessAppointmentSettings = businessAppointmentSettings;
 }
コード例 #2
0
 public Builder BusinessAppointmentSettings(Models.BusinessAppointmentSettings businessAppointmentSettings)
 {
     this.businessAppointmentSettings = businessAppointmentSettings;
     return(this);
 }