MeetingInvitation

public struct MeetingInvitation: Encodable

Invitation to create a new meeting

  • Participant who will receive the meeting

    See more

    Declaration

    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?