Class: Google::Apis::ContentV2::ListAccountStatusesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::ListAccountStatusesResponse
 
- Defined in:
- generated/google/apis/content_v2/classes.rb,
 generated/google/apis/content_v2/representations.rb,
 generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token for the retrieval of the next page of account statuses. 
- 
  
    
      #resources  ⇒ Array<Google::Apis::ContentV2::AccountStatus> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property resources.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListAccountStatusesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListAccountStatusesResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAccountStatusesResponse
Returns a new instance of ListAccountStatusesResponse
| 925 926 927 | # File 'generated/google/apis/content_v2/classes.rb', line 925 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
accountstatusesListResponse".
Corresponds to the JSON property kind
| 913 914 915 | # File 'generated/google/apis/content_v2/classes.rb', line 913 def kind @kind end | 
#next_page_token ⇒ String
The token for the retrieval of the next page of account statuses.
Corresponds to the JSON property nextPageToken
| 918 919 920 | # File 'generated/google/apis/content_v2/classes.rb', line 918 def next_page_token @next_page_token end | 
#resources ⇒ Array<Google::Apis::ContentV2::AccountStatus>
Corresponds to the JSON property resources
| 923 924 925 | # File 'generated/google/apis/content_v2/classes.rb', line 923 def resources @resources end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 930 931 932 933 934 | # File 'generated/google/apis/content_v2/classes.rb', line 930 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @resources = args[:resources] if args.key?(:resources) end |