Class: Aws::ConnectWisdomService::Types::QuickResponseContentProvider
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ConnectWisdomService::Types::QuickResponseContentProvider
 
- Defined in:
- gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb
Overview
    Note:
    
  
QuickResponseContentProvider is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of QuickResponseContentProvider corresponding to the set member.
The container quick response content.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
- [:content] 
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The content of the quick response. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#content ⇒ String
The content of the quick response.
| 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 | # File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2426 class QuickResponseContentProvider < Struct.new( :content, :unknown) SENSITIVE = [:content] include Aws::Structure include Aws::Structure::Union class Content < QuickResponseContentProvider; end class Unknown < QuickResponseContentProvider; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 2426 2427 2428 | # File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2426 def unknown @unknown end |