HolidayScheduleBases: OCITypeHoliday Schedule.Attributes:type (str): name (str): Source code in src/mercury_ocip_fast/commands/commands.py 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639@dataclass(kw_only=True) class HolidaySchedule(OCIType): """Holiday Schedule. Attributes: type (str): name (str): """ type: str = field(metadata={"alias": "type"}) name: str = field(metadata={"alias": "name"})