Class: Google::Apis::CloudsearchV1::RoomUpdatedMetadata
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::RoomUpdatedMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#group_details_metadata ⇒ Google::Apis::CloudsearchV1::GroupDetailsUpdatedMetadata
Corresponds to the JSON property
groupDetailsMetadata. -
#group_link_sharing_enabled ⇒ Boolean
(also: #group_link_sharing_enabled?)
Corresponds to the JSON property
groupLinkSharingEnabled. -
#initiator ⇒ Google::Apis::CloudsearchV1::User
User profile information.
-
#initiator_type ⇒ String
The type of the user who initiated this room update.
-
#name ⇒ String
What was updated in the room.
-
#rename_metadata ⇒ Google::Apis::CloudsearchV1::RoomRenameMetadata
Corresponds to the JSON property
renameMetadata. -
#visibility ⇒ Google::Apis::CloudsearchV1::AppsDynamiteSharedGroupVisibility
DEPRECATED: See GroupVisibility proto definition.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RoomUpdatedMetadata
constructor
A new instance of RoomUpdatedMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RoomUpdatedMetadata
Returns a new instance of RoomUpdatedMetadata.
16942 16943 16944 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16942 def initialize(**args) update!(**args) end |
Instance Attribute Details
#group_details_metadata ⇒ Google::Apis::CloudsearchV1::GroupDetailsUpdatedMetadata
Corresponds to the JSON property groupDetailsMetadata
16909 16910 16911 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16909 def @group_details_metadata end |
#group_link_sharing_enabled ⇒ Boolean Also known as: group_link_sharing_enabled?
Corresponds to the JSON property groupLinkSharingEnabled
16914 16915 16916 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16914 def group_link_sharing_enabled @group_link_sharing_enabled end |
#initiator ⇒ Google::Apis::CloudsearchV1::User
User profile information. This user is not necessarily member of a space.
Corresponds to the JSON property initiator
16920 16921 16922 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16920 def initiator @initiator end |
#initiator_type ⇒ String
The type of the user who initiated this room update.
Corresponds to the JSON property initiatorType
16925 16926 16927 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16925 def initiator_type @initiator_type end |
#name ⇒ String
What was updated in the room.
Corresponds to the JSON property name
16930 16931 16932 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16930 def name @name end |
#rename_metadata ⇒ Google::Apis::CloudsearchV1::RoomRenameMetadata
Corresponds to the JSON property renameMetadata
16935 16936 16937 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16935 def @rename_metadata end |
#visibility ⇒ Google::Apis::CloudsearchV1::AppsDynamiteSharedGroupVisibility
DEPRECATED: See GroupVisibility proto definition.
Corresponds to the JSON property visibility
16940 16941 16942 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16940 def visibility @visibility end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16947 16948 16949 16950 16951 16952 16953 16954 16955 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16947 def update!(**args) @group_details_metadata = args[:group_details_metadata] if args.key?(:group_details_metadata) @group_link_sharing_enabled = args[:group_link_sharing_enabled] if args.key?(:group_link_sharing_enabled) @initiator = args[:initiator] if args.key?(:initiator) @initiator_type = args[:initiator_type] if args.key?(:initiator_type) @name = args[:name] if args.key?(:name) @rename_metadata = args[:rename_metadata] if args.key?(:rename_metadata) @visibility = args[:visibility] if args.key?(:visibility) end |