Class: Google::Apis::ChatV1::KeyValue
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ChatV1::KeyValue
 
 
- 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 UI element contains a key (label) and a value (content). And this element may also contain some actions such as onclick button.
Instance Attribute Summary collapse
- 
  
    
      #bottom_label  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The text of the bottom label.
 - 
  
    
      #button  ⇒ Google::Apis::ChatV1::Button 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A button.
 - 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The text of the content.
 - 
  
    
      #content_multiline  ⇒ Boolean 
    
    
      (also: #content_multiline?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the content should be multiline.
 - 
  
    
      #icon  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An enum value that will be replaced by the Chat API with the corresponding icon image.
 - 
  
    
      #icon_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The icon specified by a URL.
 - 
  
    
      #on_click  ⇒ Google::Apis::ChatV1::OnClick 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An onclick action (e.g. open a link).
 - 
  
    
      #top_label  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The text of the top label.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ KeyValue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of KeyValue.
 - 
  
    
      #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) ⇒ KeyValue
Returns a new instance of KeyValue
      506 507 508  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 506 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#bottom_label ⇒ String
The text of the bottom label. Formatted text supported.
Corresponds to the JSON property bottomLabel
      467 468 469  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 467 def bottom_label @bottom_label end  | 
  
#button ⇒ Google::Apis::ChatV1::Button
A button. Can be a text button or an image button.
Corresponds to the JSON property button
      472 473 474  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 472 def @button end  | 
  
#content ⇒ String
The text of the content. Formatted text supported and always required.
Corresponds to the JSON property content
      477 478 479  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 477 def content @content end  | 
  
#content_multiline ⇒ Boolean Also known as: content_multiline?
If the content should be multiline.
Corresponds to the JSON property contentMultiline
      482 483 484  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 482 def content_multiline @content_multiline end  | 
  
#icon ⇒ String
An enum value that will be replaced by the Chat API with the
corresponding icon image.
Corresponds to the JSON property icon
      489 490 491  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 489 def icon @icon end  | 
  
#icon_url ⇒ String
The icon specified by a URL.
Corresponds to the JSON property iconUrl
      494 495 496  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 494 def icon_url @icon_url end  | 
  
#on_click ⇒ Google::Apis::ChatV1::OnClick
An onclick action (e.g. open a link).
Corresponds to the JSON property onClick
      499 500 501  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 499 def on_click @on_click end  | 
  
#top_label ⇒ String
The text of the top label. Formatted text supported.
Corresponds to the JSON property topLabel
      504 505 506  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 504 def top_label @top_label end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      511 512 513 514 515 516 517 518 519 520  | 
    
      # File 'generated/google/apis/chat_v1/classes.rb', line 511 def update!(**args) @bottom_label = args[:bottom_label] if args.key?(:bottom_label) @button = args[:button] if args.key?(:button) @content = args[:content] if args.key?(:content) @content_multiline = args[:content_multiline] if args.key?(:content_multiline) @icon = args[:icon] if args.key?(:icon) @icon_url = args[:icon_url] if args.key?(:icon_url) @on_click = args[:on_click] if args.key?(:on_click) @top_label = args[:top_label] if args.key?(:top_label) end  |