Class: Aws::ConnectWisdomService::Types::QuickResponseDataProvider

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectwisdomservice/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.

Direct Known Subclasses

Content, Unknown

Defined Under Namespace

Classes: Content, Unknown

Constant Summary collapse

SENSITIVE =
[:content]

Instance Attribute Summary collapse

Instance Attribute Details

#contentString

The content of the quick response.

Returns:

  • (String)


2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
# File 'gems/aws-sdk-connectwisdomservice/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2580
2581
2582
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2580

def unknown
  @unknown
end