UpdateScheduleRecord entity contains the AvailabilityRecord if there is an error/warning while performing the requested operation on it.

Export

UpdateScheduleRecord

interface UpdateScheduleRecord {
    availability?: AvailabilityRecord;
    errors?: Error[];
    warnings?: Warning[];
}

Properties

availability?: AvailabilityRecord

Memberof

UpdateScheduleRecord

errors?: Error[]

A list of error responses returned when a request is unsuccessful.

Memberof

UpdateScheduleRecord

warnings?: Warning[]

A list of warnings returned in the sucessful execution response of an API request.

Memberof

UpdateScheduleRecord