Meeting

public struct Meeting: Model

Represents a Meeting that could be sent to contacts

  • Users who had been invited to the meeting

    See more

    Declaration

    Swift

    public struct Participant: Model
  • id

    Meeting identifier

    Declaration

    Swift

    public let id: String
  • Meeting name

    Declaration

    Swift

    public let name: String
  • User who creates the meeting

    Declaration

    Swift

    public let user: UserDetail
  • Current participants

    Declaration

    Swift

    public let participants: [Meeting.Participant]
  • Meeting start date

    Declaration

    Swift

    public let validSince: Date
  • Meeting end date

    Declaration

    Swift

    public let validUntil: Date
  • url

    Meeting url

    Declaration

    Swift

    public let url: String