Class: Google::Apis::AdminDirectoryV1::TrustedApps
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::TrustedApps
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb
Overview
JSON template for Trusted Apps response object of a user in Directory API.
Instance Attribute Summary collapse
-
#etag ⇒ String
ETag of the resource.
-
#kind ⇒ String
Identifies the resource as trusted apps response.
-
#next_page_token ⇒ String
Corresponds to the JSON property
nextPageToken
. -
#trusted_apps ⇒ Array<Google::Apis::AdminDirectoryV1::TrustedAppId>
Trusted Apps list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TrustedApps
constructor
A new instance of TrustedApps.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TrustedApps
Returns a new instance of TrustedApps
2625 2626 2627 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2625 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
2608 2609 2610 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2608 def etag @etag end |
#kind ⇒ String
Identifies the resource as trusted apps response.
Corresponds to the JSON property kind
2613 2614 2615 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2613 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
2618 2619 2620 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2618 def next_page_token @next_page_token end |
#trusted_apps ⇒ Array<Google::Apis::AdminDirectoryV1::TrustedAppId>
Trusted Apps list.
Corresponds to the JSON property trustedApps
2623 2624 2625 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2623 def trusted_apps @trusted_apps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2630 2631 2632 2633 2634 2635 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2630 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @trusted_apps = args[:trusted_apps] if args.key?(:trusted_apps) end |