class Google::Apis::IdentitytoolkitV3::GetOobConfirmationCodeResponse

Response of getting a code for user confirmation (reset password, change email etc.).

Attributes

email[RW]

The email address that the email is sent to. Corresponds to the JSON property `email` @return [String]

kind[RW]

The fixed string “identitytoolkit#GetOobConfirmationCodeResponse”. Corresponds to the JSON property `kind` @return [String]

oob_code[RW]

The code to be send to the user. Corresponds to the JSON property `oobCode` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/identitytoolkit_v3/classes.rb, line 239
def update!(**args)
  @email = args[:email] if args.key?(:email)
  @kind = args[:kind] if args.key?(:kind)
  @oob_code = args[:oob_code] if args.key?(:oob_code)
end