Class: Aws::PinpointSMSVoiceV2::Types::OptedOutNumberInformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointSMSVoiceV2::Types::OptedOutNumberInformation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointsmsvoicev2/types.rb
Overview
The information for an opted out number in an Amazon Web Services account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_user_opted_out ⇒ Boolean
This is set to true if it was the end recipient that opted out.
-
#opted_out_number ⇒ String
The phone number that is opted out.
-
#opted_out_timestamp ⇒ Time
The time that the op tout occurred, in [UNIX epoch time] format.
Instance Attribute Details
#end_user_opted_out ⇒ Boolean
This is set to true if it was the end recipient that opted out.
3835 3836 3837 3838 3839 3840 3841 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 3835 class OptedOutNumberInformation < Struct.new( :opted_out_number, :opted_out_timestamp, :end_user_opted_out) SENSITIVE = [] include Aws::Structure end |
#opted_out_number ⇒ String
The phone number that is opted out.
3835 3836 3837 3838 3839 3840 3841 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 3835 class OptedOutNumberInformation < Struct.new( :opted_out_number, :opted_out_timestamp, :end_user_opted_out) SENSITIVE = [] include Aws::Structure end |
#opted_out_timestamp ⇒ Time
The time that the op tout occurred, in [UNIX epoch time] format.
[1]: www.epochconverter.com/
3835 3836 3837 3838 3839 3840 3841 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 3835 class OptedOutNumberInformation < Struct.new( :opted_out_number, :opted_out_timestamp, :end_user_opted_out) SENSITIVE = [] include Aws::Structure end |