Class: Google::Apis::ChatV1::GoogleAppsCardV1SelectionItem

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

An item that users can select in a selection input, such as a checkbox or switch. Google Workspace Add-ons and Chat apps:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppsCardV1SelectionItem

Returns a new instance of GoogleAppsCardV1SelectionItem.



2691
2692
2693
# File 'lib/google/apis/chat_v1/classes.rb', line 2691

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

Instance Attribute Details

#bottom_textString

For multiselect menus, a text description or label that's displayed below the item's text field. Corresponds to the JSON property bottomText

Returns:

  • (String)


2662
2663
2664
# File 'lib/google/apis/chat_v1/classes.rb', line 2662

def bottom_text
  @bottom_text
end

#selectedBoolean Also known as: selected?

Whether the item is selected by default. If the selection input only accepts one value (such as for radio buttons or a dropdown menu), only set this field for one item. Corresponds to the JSON property selected

Returns:

  • (Boolean)


2669
2670
2671
# File 'lib/google/apis/chat_v1/classes.rb', line 2669

def selected
  @selected
end

#start_icon_uriString

For multiselect menus, the URL for the icon displayed next to the item's text field. Supports PNG and JPEG files. Must be an HTTPS URL. For example, https://developers.google.com/workspace/chat/images/quickstart-app-avatar.png. Corresponds to the JSON property startIconUri

Returns:

  • (String)


2677
2678
2679
# File 'lib/google/apis/chat_v1/classes.rb', line 2677

def start_icon_uri
  @start_icon_uri
end

#textString

The text that identifies or describes the item to users. Corresponds to the JSON property text

Returns:

  • (String)


2682
2683
2684
# File 'lib/google/apis/chat_v1/classes.rb', line 2682

def text
  @text
end

#valueString

The value associated with this item. The client should use this as a form input value. For details about working with form inputs, see Receive form data. Corresponds to the JSON property value

Returns:

  • (String)


2689
2690
2691
# File 'lib/google/apis/chat_v1/classes.rb', line 2689

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2696
2697
2698
2699
2700
2701
2702
# File 'lib/google/apis/chat_v1/classes.rb', line 2696

def update!(**args)
  @bottom_text = args[:bottom_text] if args.key?(:bottom_text)
  @selected = args[:selected] if args.key?(:selected)
  @start_icon_uri = args[:start_icon_uri] if args.key?(:start_icon_uri)
  @text = args[:text] if args.key?(:text)
  @value = args[:value] if args.key?(:value)
end