Meeting

public struct Meeting

Represents a Meeting that could be sent to contacts

Inner Structs

  • Users who had been invited to the meeting

    Declaration

    Swift

    public struct Participant

Properties

  • id

    Meeting identifier

    Declaration

    Swift

    public var id: String { get }
  • Meeting name

    Declaration

    Swift

    public var name: String { get }
  • User who creates the meeting

    Declaration

    Swift

    public var user: User { get }
  • Current participants

    Declaration

    Swift

    public var participants: [Meeting.Participant] { get }
  • Meeting start date

    Declaration

    Swift

    public var validSince: Date { get }
  • Meeting end date

    Declaration

    Swift

    public var validUntil: Date { get }
  • url

    Meeting url

    Declaration

    Swift

    public var url: String { get }