Class: Google::Apis::AdminDirectoryV1::TrustedApps

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TrustedApps

Returns a new instance of TrustedApps.



3130
3131
3132
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3130

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


3113
3114
3115
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3113

def etag
  @etag
end

#kindString

Identifies the resource as trusted apps response. Corresponds to the JSON property kind

Returns:

  • (String)


3118
3119
3120
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3118

def kind
  @kind
end

#next_page_tokenString

Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3123
3124
3125
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3123

def next_page_token
  @next_page_token
end

#trusted_appsArray<Google::Apis::AdminDirectoryV1::TrustedAppId>

Trusted Apps list. Corresponds to the JSON property trustedApps



3128
3129
3130
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3128

def trusted_apps
  @trusted_apps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3135
3136
3137
3138
3139
3140
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3135

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