Class: Google::Apis::CloudsearchV1::RoomUpdatedMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RoomUpdatedMetadata

Returns a new instance of RoomUpdatedMetadata.



17103
17104
17105
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17103

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#group_details_metadataGoogle::Apis::CloudsearchV1::GroupDetailsUpdatedMetadata

Corresponds to the JSON property groupDetailsMetadata



17070
17071
17072
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17070

def 
  @group_details_metadata
end

Corresponds to the JSON property groupLinkSharingEnabled

Returns:

  • (Boolean)


17075
17076
17077
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17075

def group_link_sharing_enabled
  @group_link_sharing_enabled
end

#initiatorGoogle::Apis::CloudsearchV1::User

User profile information. This user is not necessarily member of a space. Corresponds to the JSON property initiator



17081
17082
17083
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17081

def initiator
  @initiator
end

#initiator_typeString

The type of the user who initiated this room update. Corresponds to the JSON property initiatorType

Returns:

  • (String)


17086
17087
17088
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17086

def initiator_type
  @initiator_type
end

#nameString

What was updated in the room. Corresponds to the JSON property name

Returns:

  • (String)


17091
17092
17093
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17091

def name
  @name
end

#rename_metadataGoogle::Apis::CloudsearchV1::RoomRenameMetadata

Corresponds to the JSON property renameMetadata



17096
17097
17098
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17096

def 
  @rename_metadata
end

#visibilityGoogle::Apis::CloudsearchV1::AppsDynamiteSharedGroupVisibility

DEPRECATED: See GroupVisibility proto definition. Corresponds to the JSON property visibility



17101
17102
17103
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17101

def visibility
  @visibility
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17108
17109
17110
17111
17112
17113
17114
17115
17116
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17108

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