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
3027 3028 3029 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3027 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
3010 3011 3012 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3010 def etag @etag end |
#kind ⇒ String
Identifies the resource as trusted apps response.
Corresponds to the JSON property kind
3015 3016 3017 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3015 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
3020 3021 3022 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3020 def next_page_token @next_page_token end |
#trusted_apps ⇒ Array<Google::Apis::AdminDirectoryV1::TrustedAppId>
Trusted Apps list.
Corresponds to the JSON property trustedApps
3025 3026 3027 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3025 def trusted_apps @trusted_apps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3032 3033 3034 3035 3036 3037 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3032 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 |