Class: Aws::QConnect::Types::EmailResponseChunkDataDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-qconnect/types.rb

Overview

Details of streaming chunk data for email responses including completion text and pagination tokens.

Constant Summary collapse

SENSITIVE =
[:completion]

Instance Attribute Summary collapse

Instance Attribute Details

#completionString

The partial or complete professional email response text with appropriate greetings and closings.

Returns:

  • (String)


4491
4492
4493
4494
4495
4496
# File 'lib/aws-sdk-qconnect/types.rb', line 4491

class EmailResponseChunkDataDetails < Struct.new(
  :completion,
  :next_chunk_token)
  SENSITIVE = [:completion]
  include Aws::Structure
end

#next_chunk_tokenString

Token for retrieving the next chunk of streaming response data, if available.

Returns:

  • (String)


4491
4492
4493
4494
4495
4496
# File 'lib/aws-sdk-qconnect/types.rb', line 4491

class EmailResponseChunkDataDetails < Struct.new(
  :completion,
  :next_chunk_token)
  SENSITIVE = [:completion]
  include Aws::Structure
end