Class: Google::Apis::ChatV1::UserMentionMetadata

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/chat_v1/classes.rb,
generated/google/apis/chat_v1/representations.rb,
generated/google/apis/chat_v1/representations.rb

Overview

Annotation metadata for user mentions (@).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserMentionMetadata

Returns a new instance of UserMentionMetadata.



1135
1136
1137
# File 'generated/google/apis/chat_v1/classes.rb', line 1135

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

Instance Attribute Details

#typeString

The type of user mention. Corresponds to the JSON property type

Returns:

  • (String)


1128
1129
1130
# File 'generated/google/apis/chat_v1/classes.rb', line 1128

def type
  @type
end

#userGoogle::Apis::ChatV1::User

A user in Hangouts Chat. Corresponds to the JSON property user



1133
1134
1135
# File 'generated/google/apis/chat_v1/classes.rb', line 1133

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1140
1141
1142
1143
# File 'generated/google/apis/chat_v1/classes.rb', line 1140

def update!(**args)
  @type = args[:type] if args.key?(:type)
  @user = args[:user] if args.key?(:user)
end