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.



4861
4862
4863
# File 'lib/google/apis/chat_v1/classes.rb', line 4861

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)


4853
4854
4855
# File 'lib/google/apis/chat_v1/classes.rb', line 4853

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)


4859
4860
4861
# File 'lib/google/apis/chat_v1/classes.rb', line 4859

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4866
4867
4868
4869
# File 'lib/google/apis/chat_v1/classes.rb', line 4866

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