Class: Google::Apis::ChatV1::Message
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::Message
- Defined in:
- generated/google/apis/chat_v1/classes.rb,
generated/google/apis/chat_v1/representations.rb,
generated/google/apis/chat_v1/representations.rb
Overview
A message in Hangouts Chat.
Instance Attribute Summary collapse
-
#action_response ⇒ Google::Apis::ChatV1::ActionResponse
Parameters that a bot can use to configure how it's response is posted.
-
#annotations ⇒ Array<Google::Apis::ChatV1::Annotation>
Output only.
-
#argument_text ⇒ String
Plain-text body of the message with all bot mentions stripped out.
-
#cards ⇒ Array<Google::Apis::ChatV1::Card>
Rich, formatted and interactive cards that can be used to display UI elements such as: formatted texts, buttons, clickable images.
-
#create_time ⇒ String
Output only.
-
#fallback_text ⇒ String
A plain-text description of the message's cards, used when the actual cards cannot be displayed (e.g. mobile notifications).
-
#name ⇒ String
Resource name, in the form "spaces//messages/".
-
#preview_text ⇒ String
Text for generating preview chips.
-
#sender ⇒ Google::Apis::ChatV1::User
A user in Hangouts Chat.
-
#space ⇒ Google::Apis::ChatV1::Space
A room or DM in Hangouts Chat.
-
#text ⇒ String
Plain-text body of the message.
-
#thread ⇒ Google::Apis::ChatV1::Thread
A thread in Hangouts Chat.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Message
constructor
A new instance of Message.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Message
Returns a new instance of Message
610 611 612 |
# File 'generated/google/apis/chat_v1/classes.rb', line 610 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action_response ⇒ Google::Apis::ChatV1::ActionResponse
Parameters that a bot can use to configure how it's response is posted.
Corresponds to the JSON property actionResponse
546 547 548 |
# File 'generated/google/apis/chat_v1/classes.rb', line 546 def action_response @action_response end |
#annotations ⇒ Array<Google::Apis::ChatV1::Annotation>
Output only. Annotations associated with the text in this message.
Corresponds to the JSON property annotations
551 552 553 |
# File 'generated/google/apis/chat_v1/classes.rb', line 551 def annotations @annotations end |
#argument_text ⇒ String
Plain-text body of the message with all bot mentions stripped out.
Corresponds to the JSON property argumentText
556 557 558 |
# File 'generated/google/apis/chat_v1/classes.rb', line 556 def argument_text @argument_text end |
#cards ⇒ Array<Google::Apis::ChatV1::Card>
Rich, formatted and interactive cards that can be used to display UI
elements such as: formatted texts, buttons, clickable images. Cards are
normally displayed below the plain-text body of the message.
Corresponds to the JSON property cards
563 564 565 |
# File 'generated/google/apis/chat_v1/classes.rb', line 563 def cards @cards end |
#create_time ⇒ String
Output only. The time at which the message was created in Hangouts Chat
server.
Corresponds to the JSON property createTime
569 570 571 |
# File 'generated/google/apis/chat_v1/classes.rb', line 569 def create_time @create_time end |
#fallback_text ⇒ String
A plain-text description of the message's cards, used when the actual cards
cannot be displayed (e.g. mobile notifications).
Corresponds to the JSON property fallbackText
575 576 577 |
# File 'generated/google/apis/chat_v1/classes.rb', line 575 def fallback_text @fallback_text end |
#name ⇒ String
Resource name, in the form "spaces//messages/".
Example: spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4
Corresponds to the JSON property name
581 582 583 |
# File 'generated/google/apis/chat_v1/classes.rb', line 581 def name @name end |
#preview_text ⇒ String
Text for generating preview chips. This text will not be displayed to the
user, but any links to images, web pages, videos, etc. included here will
generate preview chips.
Corresponds to the JSON property previewText
588 589 590 |
# File 'generated/google/apis/chat_v1/classes.rb', line 588 def preview_text @preview_text end |
#sender ⇒ Google::Apis::ChatV1::User
A user in Hangouts Chat.
Corresponds to the JSON property sender
593 594 595 |
# File 'generated/google/apis/chat_v1/classes.rb', line 593 def sender @sender end |
#space ⇒ Google::Apis::ChatV1::Space
A room or DM in Hangouts Chat.
Corresponds to the JSON property space
598 599 600 |
# File 'generated/google/apis/chat_v1/classes.rb', line 598 def space @space end |
#text ⇒ String
Plain-text body of the message.
Corresponds to the JSON property text
603 604 605 |
# File 'generated/google/apis/chat_v1/classes.rb', line 603 def text @text end |
#thread ⇒ Google::Apis::ChatV1::Thread
A thread in Hangouts Chat.
Corresponds to the JSON property thread
608 609 610 |
# File 'generated/google/apis/chat_v1/classes.rb', line 608 def thread @thread end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
615 616 617 618 619 620 621 622 623 624 625 626 627 628 |
# File 'generated/google/apis/chat_v1/classes.rb', line 615 def update!(**args) @action_response = args[:action_response] if args.key?(:action_response) @annotations = args[:annotations] if args.key?(:annotations) @argument_text = args[:argument_text] if args.key?(:argument_text) @cards = args[:cards] if args.key?(:cards) @create_time = args[:create_time] if args.key?(:create_time) @fallback_text = args[:fallback_text] if args.key?(:fallback_text) @name = args[:name] if args.key?(:name) @preview_text = args[:preview_text] if args.key?(:preview_text) @sender = args[:sender] if args.key?(:sender) @space = args[:space] if args.key?(:space) @text = args[:text] if args.key?(:text) @thread = args[:thread] if args.key?(:thread) end |