GoogleApi.Meet.V2.Model.Space (google_api_meet v0.4.0)
View SourceVirtual place where conferences are held. Only one active conference can be held in one space at any given time.
Attributes
-
activeConference
(type:GoogleApi.Meet.V2.Model.ActiveConference.t
, default:nil
) - Active conference, if it exists. -
config
(type:GoogleApi.Meet.V2.Model.SpaceConfig.t
, default:nil
) - Configuration pertaining to the meeting space. -
meetingCode
(type:String.t
, default:nil
) - Output only. Type friendly unique string used to join the meeting. Format:[a-z]+-[a-z]+-[a-z]+
. For example,abc-mnop-xyz
. The maximum length is 128 characters. Can only be used as an alias of the space name to get the space. -
meetingUri
(type:String.t
, default:nil
) - Output only. URI used to join meetings consisting ofhttps://meet.google.com/
followed by themeeting_code
. For example,https://meet.google.com/abc-mnop-xyz
. -
name
(type:String.t
, default:nil
) - Immutable. Resource name of the space. Format:spaces/{space}
.{space}
is the resource identifier for the space. It's a unique, server-generated ID and is case sensitive. For example,jQCFfuBOdN5z
. For more information, see How Meet identifies a meeting space.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Meet.V2.Model.Space{ activeConference: GoogleApi.Meet.V2.Model.ActiveConference.t() | nil, config: GoogleApi.Meet.V2.Model.SpaceConfig.t() | nil, meetingCode: String.t() | nil, meetingUri: String.t() | nil, name: String.t() | nil }