MeetingInvitation
public struct MeetingInvitation: Encodable
Invitation to create a new meeting
-
Participant who will receive the meeting
See moreDeclaration
Swift
public struct Participant: Encodable
-
Meeting name
Declaration
Swift
public let name: String
-
Participant to be notified
Declaration
Swift
public let participants: [MeetingInvitation.Participant]
-
Language for the template that will be sent to participant
Declaration
Swift
public let language: String
-
Date where meeting starts
Declaration
Swift
public let validSince: Date
-
Date where meeting isn’t longer valid
Declaration
Swift
public let validUntil: Date?
-
Used only for updates to reinvite participants
Declaration
Swift
public let sendInvites: Bool?
-
Declaration
Swift
public init(name: String, participants: [MeetingInvitation.Participant], language: String, validSince: Date, validUntil: Date?, sendInvites: Bool?)