Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/Schedule1Hours.md
2025-02-20 12:59:19 -05:00

874 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
schedule1-hours Schedule1Hours Schedule1Hours Schedule1Hours pythonsdk
python
Python
sdk
Schedule1Hours
Schedule1Hours
/tools/sdk/python/v3/models/schedule1-hours
SDK
Software Development Kit
Schedule1Hours
Schedule1Hours

Schedule1Hours

Properties

Name Type Description Notes
type SelectorType [required]
values []str The selected values. [required]
interval int The selected interval for RANGE selectors. [optional]
}

Example

from sailpoint.v3.models.schedule1_hours import Schedule1Hours

schedule1_hours = Schedule1Hours(
type='LIST',
values=[MON, WED],
interval=3
)

[Back to top]