Class: Aws::Pinpoint::Types::ActivitiesResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Pinpoint::Types::ActivitiesResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpoint/types.rb
 
Overview
Provides information about the activities that were performed by a campaign.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #item  ⇒ Array<Types::ActivityResponse> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of responses, one for each activity that was performed by the campaign.
 - 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The string to use in a subsequent request to get the next page of results in a paginated response.
 
Instance Attribute Details
#item ⇒ Array<Types::ActivityResponse>
An array of responses, one for each activity that was performed by the campaign.
      1107 1108 1109 1110 1111 1112  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 1107 class ActivitiesResponse < Struct.new( :item, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#next_token ⇒ String
The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.
      1107 1108 1109 1110 1111 1112  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 1107 class ActivitiesResponse < Struct.new( :item, :next_token) SENSITIVE = [] include Aws::Structure end  |