Space

public struct Space : Codable, Equatable

A data type represents a Space at Cisco Webex cloud.

Note

Room has been renamed to Space in Cisco Webex.

Since

1.2.0
  • id

    The identifier of this space.

    Since

    1.2.0

    Declaration

    Swift

    public var id: String?
  • The title of this space.

    Since

    1.2.0

    Declaration

    Swift

    public var title: String?
  • The type of this space.

    Since

    1.2.0

    Declaration

    Swift

    public var type: SpaceType?
  • Indicate if this space is locked.

    Since

    1.2.0

    Declaration

    Swift

    public var isLocked: Bool?
  • The timestamp that last activity of this space.

    Since

    1.3.0

    Declaration

    Swift

    public var lastActivityTimestamp: Date?
  • The timestamp that this space being created.

    Since

    1.2.0

    Declaration

    Swift

    public var created: Date?
  • The team Id that this space associated with.

    Since

    1.2.0

    Declaration

    Swift

    public var teamId: String?
  • The sipAddress that this space associated with.

    Since

    1.4.0

    Declaration

    Swift

    public var sipAddress: String?
  • The isExternallyOwned flag that this space associated with. Will be true If a space is owned/created by non-org/external user

    Since

    3.6.0

    Declaration

    Swift

    public var isExternallyOwned: Bool?
  • Constructs a Space object.

    Note

    for internal use only.

    Declaration

    Swift

    public init(id: String? = nil,
                title: String? = nil,
                type: SpaceType? = nil,
                isLocked: Bool? = nil,
                lastActivityTimestamp: Date? = nil,
                createdDate: Date? = nil,
                teamId: String? = nil,
                sipAddress: String? = nil,
                isExternallyOwned: Bool? = false)