Class: Aws::QConnect::Types::QuickResponseContentProvider

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

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)


2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2763

class QuickResponseContentProvider < Struct.new(
  :content,
  :unknown)
  SENSITIVE = [:content]
  include Aws::Structure
  include Aws::Structure::Union

  class Content < QuickResponseContentProvider; end
  class Unknown < QuickResponseContentProvider; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2763
2764
2765
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2763

def unknown
  @unknown
end