class Google::Apis::IdentitytoolkitV3::IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest

Request for Identitytoolkit-VerifyPhoneNumber

Attributes

code[RW]

Corresponds to the JSON property `code` @return [String]

id_token[RW]

Corresponds to the JSON property `idToken` @return [String]

operation[RW]

Corresponds to the JSON property `operation` @return [String]

phone_number[RW]

Corresponds to the JSON property `phoneNumber` @return [String]

session_info[RW]

The session info previously returned by IdentityToolkit-SendVerificationCode. Corresponds to the JSON property `sessionInfo` @return [String]

temporary_proof[RW]

Corresponds to the JSON property `temporaryProof` @return [String]

verification_proof[RW]

Corresponds to the JSON property `verificationProof` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1556
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1561
def update!(**args)
  @code = args[:code] if args.key?(:code)
  @id_token = args[:id_token] if args.key?(:id_token)
  @operation = args[:operation] if args.key?(:operation)
  @phone_number = args[:phone_number] if args.key?(:phone_number)
  @session_info = args[:session_info] if args.key?(:session_info)
  @temporary_proof = args[:temporary_proof] if args.key?(:temporary_proof)
  @verification_proof = args[:verification_proof] if args.key?(:verification_proof)
end