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.
      3508 3509 3510 3511 3512 3513 3514  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 3508 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.
      3508 3509 3510 3511 3512 3513 3514  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 3508 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/
      3508 3509 3510 3511 3512 3513 3514  | 
    
      # File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 3508 class OptedOutNumberInformation < Struct.new( :opted_out_number, :opted_out_timestamp, :end_user_opted_out) SENSITIVE = [] include Aws::Structure end  |