Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ListPolicySchemasResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ChromepolicyV1::GoogleChromePolicyV1ListPolicySchemasResponse
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromepolicy_v1/classes.rb,
 lib/google/apis/chromepolicy_v1/representations.rb,
 lib/google/apis/chromepolicy_v1/representations.rb
Overview
Response message for listing policy schemas that match a filter.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The page token used to get the next page of policy schemas. 
- 
  
    
      #policy_schemas  ⇒ Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchema> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of policy schemas that match the query. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleChromePolicyV1ListPolicySchemasResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleChromePolicyV1ListPolicySchemasResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleChromePolicyV1ListPolicySchemasResponse
Returns a new instance of GoogleChromePolicyV1ListPolicySchemasResponse.
| 145 146 147 | # File 'lib/google/apis/chromepolicy_v1/classes.rb', line 145 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
The page token used to get the next page of policy schemas.
Corresponds to the JSON property nextPageToken
| 138 139 140 | # File 'lib/google/apis/chromepolicy_v1/classes.rb', line 138 def next_page_token @next_page_token end | 
#policy_schemas ⇒ Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchema>
The list of policy schemas that match the query.
Corresponds to the JSON property policySchemas
| 143 144 145 | # File 'lib/google/apis/chromepolicy_v1/classes.rb', line 143 def policy_schemas @policy_schemas end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 150 151 152 153 | # File 'lib/google/apis/chromepolicy_v1/classes.rb', line 150 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @policy_schemas = args[:policy_schemas] if args.key?(:policy_schemas) end |