Class: Aws::ConnectWisdomService::Types::QuickResponseDataProvider
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::QuickResponseDataProvider
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectwisdomservice/types.rb
Overview
Note:
QuickResponseDataProvider is a union - when making an API calls you must set exactly one of the members.
The container of quick response data.
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.
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 2580 class QuickResponseDataProvider < Struct.new( :content, :unknown) SENSITIVE = [:content] include Aws::Structure include Aws::Structure::Union class Content < QuickResponseDataProvider; end class Unknown < QuickResponseDataProvider; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2580 2581 2582 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 2580 def unknown @unknown end |