Class: Google::Apis::ChatV1::GoogleAppsCardV1CardHeader

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

Represents a card header. For an example in Google Chat apps, see Card header. Google Workspace Add-ons and Chat apps:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppsCardV1CardHeader

Returns a new instance of GoogleAppsCardV1CardHeader.



1637
1638
1639
# File 'lib/google/apis/chat_v1/classes.rb', line 1637

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

Instance Attribute Details

#image_alt_textString

The alternative text of this image that's used for accessibility. Corresponds to the JSON property imageAltText

Returns:

  • (String)


1611
1612
1613
# File 'lib/google/apis/chat_v1/classes.rb', line 1611

def image_alt_text
  @image_alt_text
end

#image_typeString

The shape used to crop the image. Google Workspace Add-ons and Chat apps: Corresponds to the JSON property imageType

Returns:

  • (String)


1617
1618
1619
# File 'lib/google/apis/chat_v1/classes.rb', line 1617

def image_type
  @image_type
end

#image_urlString

The HTTPS URL of the image in the card header. Corresponds to the JSON property imageUrl

Returns:

  • (String)


1622
1623
1624
# File 'lib/google/apis/chat_v1/classes.rb', line 1622

def image_url
  @image_url
end

#subtitleString

The subtitle of the card header. If specified, appears on its own line below the title. Corresponds to the JSON property subtitle

Returns:

  • (String)


1628
1629
1630
# File 'lib/google/apis/chat_v1/classes.rb', line 1628

def subtitle
  @subtitle
end

#titleString

Required. The title of the card header. The header has a fixed height: if both a title and subtitle are specified, each takes up one line. If only the title is specified, it takes up both lines. Corresponds to the JSON property title

Returns:

  • (String)


1635
1636
1637
# File 'lib/google/apis/chat_v1/classes.rb', line 1635

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1642
1643
1644
1645
1646
1647
1648
# File 'lib/google/apis/chat_v1/classes.rb', line 1642

def update!(**args)
  @image_alt_text = args[:image_alt_text] if args.key?(:image_alt_text)
  @image_type = args[:image_type] if args.key?(:image_type)
  @image_url = args[:image_url] if args.key?(:image_url)
  @subtitle = args[:subtitle] if args.key?(:subtitle)
  @title = args[:title] if args.key?(:title)
end