Skip to main content
Module

x/jamf_school/mod.ts>ProfileSchedule

A simple, secure, correct, and modern Jamf School API wrapper. (Unofficial)
Latest
interface ProfileSchedule
import { type ProfileSchedule } from "https://deno.land/x/jamf_school@0.5.0/mod.ts";

Represents a profile's installation and removal schedule (time filter).

Properties

readonly
monday: boolean

Will the profile be installed on Monday?

readonly
tuesday: boolean

Will the profile be installed on Tuesday?

readonly
wednesday: boolean

Will the profile be installed on Wednesday?

readonly
thursday: boolean

Will the profile be installed on Thursday?

readonly
friday: boolean

Will the profile be installed on Friday?

readonly
saturday: boolean

Will the profile be installed on Saturday?

readonly
sunday: boolean

Will the profile be installed on Sunday?

readonly
holidays: boolean

Will the profile be installed on holidays?

readonly
installTime: { hour: number; minute: number; }

The wall-clock time at which the profile will be installed.

This object will be replaced with a Temporal.PlainTime once the Temporal API is available.

readonly
removeTime: { hour: number; minute: number; }

The wall-clock time at which the profile will be removed.

This object will be replaced with a Temporal.PlainTime once the Temporal API is available.