Reference documentation and code samples for the Google Chat V1 API class Google::Apps::Chat::V1::SetUpSpaceRequest.
Request to create a space and add specified users to it.
Inherits
- Object
Extended By
- Google::Protobuf::MessageExts::ClassMethods
Includes
- Google::Protobuf::MessageExts
Methods
#memberships
def memberships() -> ::Array<::Google::Apps::Chat::V1::Membership>
-
(::Array<::Google::Apps::Chat::V1::Membership>) — Optional. The Google Chat users or groups to invite to join the space. Omit
the calling user, as they are added automatically.
The set currently allows up to 20 memberships (in addition to the caller).
For human membership, the
Membership.member
field must contain auser
withname
populated (format:users/{user}
) andtype
set toUser.Type.HUMAN
. You can only add human users when setting up a space (adding Chat apps is only supported for direct message setup with the calling app). You can also add members using the user's email as an alias for {user}. For example, theuser.name
can beusers/example@gmail.com
. To invite Gmail users or users from external Google Workspace domains, user's email must be used for{user}
.For Google group membership, the
Membership.group_member
field must contain agroup
withname
populated (formatgroups/{group}
). You can only add Google groups when settingSpace.spaceType
toSPACE
.Optional when setting
Space.spaceType
toSPACE
.Required when setting
Space.spaceType
toGROUP_CHAT
, along with at least two memberships.Required when setting
Space.spaceType
toDIRECT_MESSAGE
with a human user, along with exactly one membership.Must be empty when creating a 1:1 conversation between a human and the calling Chat app (when setting
Space.spaceType
toDIRECT_MESSAGE
andSpace.singleUserBotDm
totrue
).
#memberships=
def memberships=(value) -> ::Array<::Google::Apps::Chat::V1::Membership>
-
value (::Array<::Google::Apps::Chat::V1::Membership>) — Optional. The Google Chat users or groups to invite to join the space. Omit
the calling user, as they are added automatically.
The set currently allows up to 20 memberships (in addition to the caller).
For human membership, the
Membership.member
field must contain auser
withname
populated (format:users/{user}
) andtype
set toUser.Type.HUMAN
. You can only add human users when setting up a space (adding Chat apps is only supported for direct message setup with the calling app). You can also add members using the user's email as an alias for {user}. For example, theuser.name
can beusers/example@gmail.com
. To invite Gmail users or users from external Google Workspace domains, user's email must be used for{user}
.For Google group membership, the
Membership.group_member
field must contain agroup
withname
populated (formatgroups/{group}
). You can only add Google groups when settingSpace.spaceType
toSPACE
.Optional when setting
Space.spaceType
toSPACE
.Required when setting
Space.spaceType
toGROUP_CHAT
, along with at least two memberships.Required when setting
Space.spaceType
toDIRECT_MESSAGE
with a human user, along with exactly one membership.Must be empty when creating a 1:1 conversation between a human and the calling Chat app (when setting
Space.spaceType
toDIRECT_MESSAGE
andSpace.singleUserBotDm
totrue
).
-
(::Array<::Google::Apps::Chat::V1::Membership>) — Optional. The Google Chat users or groups to invite to join the space. Omit
the calling user, as they are added automatically.
The set currently allows up to 20 memberships (in addition to the caller).
For human membership, the
Membership.member
field must contain auser
withname
populated (format:users/{user}
) andtype
set toUser.Type.HUMAN
. You can only add human users when setting up a space (adding Chat apps is only supported for direct message setup with the calling app). You can also add members using the user's email as an alias for {user}. For example, theuser.name
can beusers/example@gmail.com
. To invite Gmail users or users from external Google Workspace domains, user's email must be used for{user}
.For Google group membership, the
Membership.group_member
field must contain agroup
withname
populated (formatgroups/{group}
). You can only add Google groups when settingSpace.spaceType
toSPACE
.Optional when setting
Space.spaceType
toSPACE
.Required when setting
Space.spaceType
toGROUP_CHAT
, along with at least two memberships.Required when setting
Space.spaceType
toDIRECT_MESSAGE
with a human user, along with exactly one membership.Must be empty when creating a 1:1 conversation between a human and the calling Chat app (when setting
Space.spaceType
toDIRECT_MESSAGE
andSpace.singleUserBotDm
totrue
).
#request_id
def request_id() -> ::String
- (::String) — Optional. A unique identifier for this request. A random UUID is recommended. Specifying an existing request ID returns the space created with that ID instead of creating a new space. Specifying an existing request ID from the same Chat app with a different authenticated user returns an error.
#request_id=
def request_id=(value) -> ::String
- value (::String) — Optional. A unique identifier for this request. A random UUID is recommended. Specifying an existing request ID returns the space created with that ID instead of creating a new space. Specifying an existing request ID from the same Chat app with a different authenticated user returns an error.
- (::String) — Optional. A unique identifier for this request. A random UUID is recommended. Specifying an existing request ID returns the space created with that ID instead of creating a new space. Specifying an existing request ID from the same Chat app with a different authenticated user returns an error.
#space
def space() -> ::Google::Apps::Chat::V1::Space
-
(::Google::Apps::Chat::V1::Space) — Required. The
Space.spaceType
field is required.To create a space, set
Space.spaceType
toSPACE
and setSpace.displayName
. If you receive the error messageALREADY_EXISTS
when setting up a space, try a differentdisplayName
. An existing space within the Google Workspace organization might already use this display name.To create a group chat, set
Space.spaceType
toGROUP_CHAT
. Don't setSpace.displayName
.To create a 1:1 conversation between humans, set
Space.spaceType
toDIRECT_MESSAGE
and setSpace.singleUserBotDm
tofalse
. Don't setSpace.displayName
orSpace.spaceDetails
.To create an 1:1 conversation between a human and the calling Chat app, set
Space.spaceType
toDIRECT_MESSAGE
andSpace.singleUserBotDm
totrue
. Don't setSpace.displayName
orSpace.spaceDetails
.If a
DIRECT_MESSAGE
space already exists, that space is returned instead of creating a new space.
#space=
def space=(value) -> ::Google::Apps::Chat::V1::Space
-
value (::Google::Apps::Chat::V1::Space) — Required. The
Space.spaceType
field is required.To create a space, set
Space.spaceType
toSPACE
and setSpace.displayName
. If you receive the error messageALREADY_EXISTS
when setting up a space, try a differentdisplayName
. An existing space within the Google Workspace organization might already use this display name.To create a group chat, set
Space.spaceType
toGROUP_CHAT
. Don't setSpace.displayName
.To create a 1:1 conversation between humans, set
Space.spaceType
toDIRECT_MESSAGE
and setSpace.singleUserBotDm
tofalse
. Don't setSpace.displayName
orSpace.spaceDetails
.To create an 1:1 conversation between a human and the calling Chat app, set
Space.spaceType
toDIRECT_MESSAGE
andSpace.singleUserBotDm
totrue
. Don't setSpace.displayName
orSpace.spaceDetails
.If a
DIRECT_MESSAGE
space already exists, that space is returned instead of creating a new space.
-
(::Google::Apps::Chat::V1::Space) — Required. The
Space.spaceType
field is required.To create a space, set
Space.spaceType
toSPACE
and setSpace.displayName
. If you receive the error messageALREADY_EXISTS
when setting up a space, try a differentdisplayName
. An existing space within the Google Workspace organization might already use this display name.To create a group chat, set
Space.spaceType
toGROUP_CHAT
. Don't setSpace.displayName
.To create a 1:1 conversation between humans, set
Space.spaceType
toDIRECT_MESSAGE
and setSpace.singleUserBotDm
tofalse
. Don't setSpace.displayName
orSpace.spaceDetails
.To create an 1:1 conversation between a human and the calling Chat app, set
Space.spaceType
toDIRECT_MESSAGE
andSpace.singleUserBotDm
totrue
. Don't setSpace.displayName
orSpace.spaceDetails
.If a
DIRECT_MESSAGE
space already exists, that space is returned instead of creating a new space.