class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentMessageImage

The image response message.

Attributes

accessibility_text[RW]

Optional. A text description of the image to be used for accessibility, e.g., screen readers. Corresponds to the JSON property `accessibilityText` @return [String]

image_uri[RW]

Optional. The public URI to an image file. Corresponds to the JSON property `imageUri` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 9579
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_v3beta1/classes.rb, line 9584
def update!(**args)
  @accessibility_text = args[:accessibility_text] if args.key?(:accessibility_text)
  @image_uri = args[:image_uri] if args.key?(:image_uri)
end