diff --git a/WellnessLiving/Wl/Classes/ClassView/ElementModel.php b/WellnessLiving/Wl/Classes/ClassView/ElementModel.php new file mode 100644 index 00000000..26768b4b --- /dev/null +++ b/WellnessLiving/Wl/Classes/ClassView/ElementModel.php @@ -0,0 +1,68 @@ + + *
int[] a_day
+ *
List of days of the week where class schedule exist. # 1 - Monday, 7 - Sunday.
+ *
array a_repeat
+ *
Schedule repeat options: + *
+ *
int i_repeat
+ *
Count of the periods which specified in id_repeat.
+ *
int id_repeat
+ *
Measuring unit of i_repeat.
+ *
+ *
+ *
string[] a_staff_key
+ *
List of staff member keys who provide sessions for this schedule.
+ *
string dl_end
+ *
+ * End date of the schedule in locale timezone of the location. + * Empty or zero date in a case if schedule is ongoing. + *
+ *
string dl_start
+ *
Start date of the schedule in locale timezone of the location.
+ *
int i_duration
+ *
Duration of the schedule sessions in a minutes.
+ *
string k_location
+ *
Location key of the schedule.
+ *
string m_price
+ *
Price of single session of the schedule.
+ *
string text_time
+ *
Time of the session in format: `[start_time] - [end_time]` in locale timezone.
+ * + * + * @get result + * @var array + */ + public $a_schedule = []; + + /** + * Business key. + * + * @get get + * @var string + */ + public $k_business = ''; + + /** + * Class key. + * + * @get get + * @var string + */ + public $k_class = ''; +} + +?> \ No newline at end of file