--- id: schedule-hours title: ScheduleHours pagination_label: ScheduleHours sidebar_label: ScheduleHours sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'ScheduleHours', 'ScheduleHours'] slug: /tools/sdk/powershell/v3/models/schedule-hours tags: ['SDK', 'Software Development Kit', 'ScheduleHours', 'ScheduleHours'] --- # ScheduleHours ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Type** | **Enum** [ "LIST", "RANGE" ] | Enum type to specify hours value | [required] **Values** | **[]String** | Values of the days based on the enum type mentioned above | [required] **Interval** | **Int64** | Interval between the cert generations | [optional] ## Examples - Prepare the resource ```powershell $ScheduleHours = Initialize-ScheduleHours -Type LIST ` -Values [1] ` -Interval 2 ``` - Convert the resource to JSON ```powershell $ScheduleHours | ConvertTo-JSON ``` [[Back to top]](#)