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
2872 2873 2874 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2872 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
2855 2856 2857 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2855 def etag @etag end |
#kind ⇒ String
Identifies the resource as trusted apps response.
Corresponds to the JSON property kind
2860 2861 2862 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2860 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
2865 2866 2867 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2865 def next_page_token @next_page_token end |
#trusted_apps ⇒ Array<Google::Apis::AdminDirectoryV1::TrustedAppId>
Trusted Apps list.
Corresponds to the JSON property trustedApps
2870 2871 2872 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2870 def trusted_apps @trusted_apps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2877 2878 2879 2880 2881 2882 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2877 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 |