Skip to main content

ApprovalconfigCronTimezone

Timezone configuration for cron schedules.

Properties

NameTypeDescriptionNotes
locationstrTimezone location for cron schedules.[optional]
offsetstrTimezone offset for cron schedules.[optional]
}

Example

from sailpoint.approvals.models.approvalconfig_cron_timezone import ApprovalconfigCronTimezone

approvalconfig_cron_timezone = ApprovalconfigCronTimezone(
location='America/New_York',
offset=''
)

[Back to top]