ScheduleRequest

data class ScheduleRequest(val bookingId: String? = null, val elementId: String, val elementType: ResourceType, val meetingName: String? = null, val meetingNote: String? = null, val videoConference: Boolean? = false, val dayStart: String, val dayEnd: String? = null, val start: String? = null, val end: String? = null, val typedAttendees: List<TypeAttendee>? = null, val recurring: RecurringType? = null, val externalAttendees: List<String>? = null, val additionalServices: List<AdditionalService>? = null) : Parcelable

Constructors

Link copied to clipboard
constructor(bookingId: String? = null, elementId: String, elementType: ResourceType, meetingName: String? = null, meetingNote: String? = null, videoConference: Boolean? = false, dayStart: String, dayEnd: String? = null, start: String? = null, end: String? = null, typedAttendees: List<TypeAttendee>? = null, recurring: RecurringType? = null, externalAttendees: List<String>? = null, additionalServices: List<AdditionalService>? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val bookingId: String? = null

The id of the reservation to be modified. When a reservation is created for the first time this id should be null

Link copied to clipboard
val dayEnd: String? = null

example: 2023-01-21

Link copied to clipboard

example: 2023-01-21

Link copied to clipboard

the id of the resource you want to book my id for Virtual Meeting

Link copied to clipboard
Link copied to clipboard
val end: String? = null

example: 18:00

Link copied to clipboard
Link copied to clipboard
val meetingName: String? = null

an optional name for the meeting

Link copied to clipboard
val meetingNote: String? = null

an optional note for the meeting

Link copied to clipboard

the type of the schedule RecurringType

Link copied to clipboard
val start: String? = null

example: 08:00

Link copied to clipboard

a list of type attendees for the meeting

Link copied to clipboard
val videoConference: Boolean? = false

a boolean to indicate if is a video conference

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)