class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessageColumnProperties

Column properties for TableCard.

Attributes

header[RW]

Required. Column heading. Corresponds to the JSON property `header` @return [String]

horizontal_alignment[RW]

Optional. Defines text alignment for all cells in this column. Corresponds to the JSON property `horizontalAlignment` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 11998
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3/classes.rb, line 12003
def update!(**args)
  @header = args[:header] if args.key?(:header)
  @horizontal_alignment = args[:horizontal_alignment] if args.key?(:horizontal_alignment)
end