Class: Google::Apis::ChatV1::Card

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

A card is a UI element that can contain UI widgets such as texts, images.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Card

Returns a new instance of Card.



300
301
302
# File 'lib/google/apis/chat_v1/classes.rb', line 300

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

Instance Attribute Details

#card_actionsArray<Google::Apis::ChatV1::CardAction>

The actions of this card. Corresponds to the JSON property cardActions



283
284
285
# File 'lib/google/apis/chat_v1/classes.rb', line 283

def card_actions
  @card_actions
end

#headerGoogle::Apis::ChatV1::CardHeader

The header of the card. A header usually contains a title and an image. Corresponds to the JSON property header



288
289
290
# File 'lib/google/apis/chat_v1/classes.rb', line 288

def header
  @header
end

#nameString

Name of the card. Corresponds to the JSON property name

Returns:

  • (String)


293
294
295
# File 'lib/google/apis/chat_v1/classes.rb', line 293

def name
  @name
end

#sectionsArray<Google::Apis::ChatV1::Section>

Sections are separated by a line divider. Corresponds to the JSON property sections

Returns:



298
299
300
# File 'lib/google/apis/chat_v1/classes.rb', line 298

def sections
  @sections
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



305
306
307
308
309
310
# File 'lib/google/apis/chat_v1/classes.rb', line 305

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