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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb

Overview

JSON template for token resource in Directory API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Token

Returns a new instance of Token.



3681
3682
3683
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3681

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)


3641
3642
3643
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3641

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)


3647
3648
3649
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3647

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)


3652
3653
3654
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3652

def display_text
  @display_text
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


3657
3658
3659
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3657

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)


3662
3663
3664
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3662

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)


3668
3669
3670
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3668

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>)


3674
3675
3676
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3674

def scopes
  @scopes
end

#user_keyString

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

Returns:

  • (String)


3679
3680
3681
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3679

def user_key
  @user_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3686

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