Class: Google::Apis::AdminDirectoryV1::VerificationCode

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 verification codes 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) ⇒ VerificationCode

Returns a new instance of VerificationCode



3411
3412
3413
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3411

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

Instance Attribute Details

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


3393
3394
3395
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3393

def etag
  @etag
end

#kindString

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

Returns:

  • (String)


3398
3399
3400
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3398

def kind
  @kind
end

#user_idString

The obfuscated unique ID of the user. Corresponds to the JSON property userId

Returns:

  • (String)


3403
3404
3405
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3403

def user_id
  @user_id
end

#verification_codeString

A current verification code for the user. Invalidated or used verification codes are not returned as part of the result. Corresponds to the JSON property verificationCode

Returns:

  • (String)


3409
3410
3411
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3409

def verification_code
  @verification_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3416
3417
3418
3419
3420
3421
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3416

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @kind = args[:kind] if args.key?(:kind)
  @user_id = args[:user_id] if args.key?(:user_id)
  @verification_code = args[:verification_code] if args.key?(:verification_code)
end