Class: Aws::PinpointSMSVoiceV2::Types::RcsMessageContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointSMSVoiceV2::Types::RcsMessageContent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointsmsvoicev2/types.rb
Overview
The content of an RCS message, containing the message body (text, file, rich card, or carousel) and optional message-level suggested actions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content ⇒ Types::RcsContent
The content of the RCS message.
-
#suggestions ⇒ Array<Types::RcsSuggestedAction>
Message-level suggested actions displayed to the recipient.
Instance Attribute Details
#content ⇒ Types::RcsContent
The content of the RCS message. Exactly one content type must be specified: TextMessage, FileMessage, RichCard, or Carousel.
6326 6327 6328 6329 6330 6331 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 6326 class RcsMessageContent < Struct.new( :content, :suggestions) SENSITIVE = [] include Aws::Structure end |
#suggestions ⇒ Array<Types::RcsSuggestedAction>
Message-level suggested actions displayed to the recipient. Maximum 11 suggestions per message.
6326 6327 6328 6329 6330 6331 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 6326 class RcsMessageContent < Struct.new( :content, :suggestions) SENSITIVE = [] include Aws::Structure end |