Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1ListPolicySchemasResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1ListPolicySchemasResponse
- 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::GoogleChromePolicyVersionsV1PolicySchema>
The list of policy schemas that match the query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromePolicyVersionsV1ListPolicySchemasResponse
constructor
A new instance of GoogleChromePolicyVersionsV1ListPolicySchemasResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromePolicyVersionsV1ListPolicySchemasResponse
Returns a new instance of GoogleChromePolicyVersionsV1ListPolicySchemasResponse.
504 505 506 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 504 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
497 498 499 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 497 def next_page_token @next_page_token end |
#policy_schemas ⇒ Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicySchema>
The list of policy schemas that match the query.
Corresponds to the JSON property policySchemas
502 503 504 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 502 def policy_schemas @policy_schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
509 510 511 512 |
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 509 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 |