Class: Aws::Pinpoint::Types::SimpleEmailPart

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

Overview

Note:

When making an API call, you may pass SimpleEmailPart data as a hash:

{
  charset: "__string",
  data: "__string",
}

Textual email data, plus an optional character set specification.

Instance Attribute Summary collapse

Instance Attribute Details

#charsetString

The character set of the content.

Returns:

  • (String)


9143
9144
9145
9146
9147
# File 'lib/aws-sdk-pinpoint/types.rb', line 9143

class SimpleEmailPart < Struct.new(
  :charset,
  :data)
  include Aws::Structure
end

#dataString

The textual data of the content.

Returns:

  • (String)


9143
9144
9145
9146
9147
# File 'lib/aws-sdk-pinpoint/types.rb', line 9143

class SimpleEmailPart < Struct.new(
  :charset,
  :data)
  include Aws::Structure
end