Class: Google::Apis::AdminDirectoryV1::Token

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 token resource 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) ⇒ Token

Returns a new instance of Token



2912
2913
2914
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2912

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

Instance Attribute Details

#anonymousBoolean Also known as: anonymous?

Whether the application is registered with Google. The value is true if the application has an anonymous Client ID. Corresponds to the JSON property anonymous

Returns:

  • (Boolean)


2872
2873
2874
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2872

def anonymous
  @anonymous
end

#client_idString

The Client ID of the application the token is issued to. Corresponds to the JSON property clientId

Returns:

  • (String)


2878
2879
2880
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2878

def client_id
  @client_id
end

#display_textString

The displayable name of the application the token is issued to. Corresponds to the JSON property displayText

Returns:

  • (String)


2883
2884
2885
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2883

def display_text
  @display_text
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


2888
2889
2890
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2888

def etag
  @etag
end

#kindString

The type of the API resource. This is always admin#directory#token. Corresponds to the JSON property kind

Returns:

  • (String)


2893
2894
2895
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2893

def kind
  @kind
end

#native_appBoolean Also known as: native_app?

Whether the token is issued to an installed application. The value is true if the application is installed to a desktop or mobile device. Corresponds to the JSON property nativeApp

Returns:

  • (Boolean)


2899
2900
2901
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2899

def native_app
  @native_app
end

#scopesArray<String>

A list of authorization scopes the application is granted. Corresponds to the JSON property scopes

Returns:

  • (Array<String>)


2905
2906
2907
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2905

def scopes
  @scopes
end

#user_keyString

The unique ID of the user that issued the token. Corresponds to the JSON property userKey

Returns:

  • (String)


2910
2911
2912
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2910

def user_key
  @user_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2917

def update!(**args)
  @anonymous = args[:anonymous] if args.key?(:anonymous)
  @client_id = args[:client_id] if args.key?(:client_id)
  @display_text = args[:display_text] if args.key?(:display_text)
  @etag = args[:etag] if args.key?(:etag)
  @kind = args[:kind] if args.key?(:kind)
  @native_app = args[:native_app] if args.key?(:native_app)
  @scopes = args[:scopes] if args.key?(:scopes)
  @user_key = args[:user_key] if args.key?(:user_key)
end