Class: Google::Apis::ChatV1::QuotedMessageMetadata

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

Overview

Information about a quoted message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QuotedMessageMetadata

Returns a new instance of QuotedMessageMetadata.



4288
4289
4290
# File 'lib/google/apis/chat_v1/classes.rb', line 4288

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

Instance Attribute Details

#last_update_timeString

Output only. The timestamp when the quoted message was created or when the quoted message was last updated. Corresponds to the JSON property lastUpdateTime

Returns:

  • (String)


4280
4281
4282
# File 'lib/google/apis/chat_v1/classes.rb', line 4280

def last_update_time
  @last_update_time
end

#nameString

Output only. Resource name of the quoted message. Format: spaces/space/ messages/message` Corresponds to the JSON propertyname`

Returns:

  • (String)


4286
4287
4288
# File 'lib/google/apis/chat_v1/classes.rb', line 4286

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4293
4294
4295
4296
# File 'lib/google/apis/chat_v1/classes.rb', line 4293

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