HolidayScheduleBases: OCITypeHoliday Schedule.Attributes:type (str): name (str): Source code in src/mercury_ocip/commands/commands.py 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635@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"})