Schedule
Represents a schedule for a client within a specific period.
Attributes:
| Name | Type | Description |
|---|---|---|
client_name |
str
|
The name of the client. |
period |
Period
|
The period of the schedule. |
id |
int
|
The unique identifier for the schedule. |
Source code in hazbin_hotel/src/schedule.py
client_name: str
property
writable
__init__(client_name, period)
Initializes a Schedule object with a client name and period.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
client_name
|
str
|
The name of the client. |
required |
period
|
Period
|
The period of the schedule. |
required |