Type Alias ScheduleReadOptions

ScheduleReadOptions: {
    columns?: string[];
    filter?: string;
    limit?: number;
    omit?: string[];
    sort?: string[];
}

Options for reading Schedules and Calendars.

Type declaration

  • Optionalcolumns?: string[]

    If defined, limit the number of columns sent back in the response.

  • Optionalfilter?: string

    If defined, Gets the functions filtered by a Haystack filter

  • Optionallimit?: number

    If defined, specifies the max number of function records that will be returned by the read

  • Optionalomit?: string[]

    Omit the specified columns from the response.

  • Optionalsort?: string[]

    If defined, specifies the name of the tag/prop by which the returned function records are sorted in ascending order.