Class: Aws::QConnect::Types::QuickResponseContentProvider
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::QuickResponseContentProvider
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-qconnect/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.
8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8831 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
8831 8832 8833 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8831 def unknown @unknown end |