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

888 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-months Schedule1Months Schedule1Months Schedule1Months pythonsdk
python
Python
sdk
Schedule1Months
Schedule1Months
/tools/sdk/python/v3/models/schedule1-months
SDK
Software Development Kit
Schedule1Months
Schedule1Months

Schedule1Months

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_months import Schedule1Months

schedule1_months = Schedule1Months(
type='LIST',
values=[MON, WED],
interval=3
)

[Back to top]