Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageImage
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageImage
 
 
- 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
The image response message.
Instance Attribute Summary collapse
- 
  
    
      #accessibility_text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A text description of the image to be used for accessibility, e.g., screen readers.
 - 
  
    
      #image_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDialogflowV2beta1IntentMessageImage 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDialogflowV2beta1IntentMessageImage.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageImage
Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageImage
      3189 3190 3191  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 3189 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#accessibility_text ⇒ String
A text description of the image to be used for accessibility,
e.g., screen readers. Required if image_uri is set for CarouselSelect.
Corresponds to the JSON property accessibilityText
      3182 3183 3184  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 3182 def accessibility_text @accessibility_text end  | 
  
#image_uri ⇒ String
Optional. The public URI to an image file.
Corresponds to the JSON property imageUri
      3187 3188 3189  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 3187 def image_uri @image_uri end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3194 3195 3196 3197  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 3194 def update!(**args) @accessibility_text = args[:accessibility_text] if args.key?(:accessibility_text) @image_uri = args[:image_uri] if args.key?(:image_uri) end  |