Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb

Overview

Response media object for media content card.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject

Returns a new instance of GoogleCloudDialogflowV2IntentMessageMediaContentResponseMediaObject.



2042
2043
2044
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2042

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

Instance Attribute Details

#content_urlString

Required. Url where the media is stored. Corresponds to the JSON property contentUrl

Returns:

  • (String)


2020
2021
2022
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2020

def content_url
  @content_url
end

#descriptionString

Optional. Description of media card. Corresponds to the JSON property description

Returns:

  • (String)


2025
2026
2027
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2025

def description
  @description
end

#iconGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageImage

The image response message. Corresponds to the JSON property icon



2030
2031
2032
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2030

def icon
  @icon
end

#large_imageGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageImage

The image response message. Corresponds to the JSON property largeImage



2035
2036
2037
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2035

def large_image
  @large_image
end

#nameString

Required. Name of media card. Corresponds to the JSON property name

Returns:

  • (String)


2040
2041
2042
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2040

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2047
2048
2049
2050
2051
2052
2053
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2047

def update!(**args)
  @content_url = args[:content_url] if args.key?(:content_url)
  @description = args[:description] if args.key?(:description)
  @icon = args[:icon] if args.key?(:icon)
  @large_image = args[:large_image] if args.key?(:large_image)
  @name = args[:name] if args.key?(:name)
end