Class: PlatformAPI::SmsNumber
- Inherits:
-
Object
- Object
- PlatformAPI::SmsNumber
- Defined in:
- lib/platform-api/client.rb
Overview
SMS numbers are used for recovery on accounts with two-factor authentication enabled.
Instance Method Summary collapse
-
#confirm(account_email_or_account_id_or_account_self) ⇒ Object
Confirm an SMS number change with a confirmation code.
-
#initialize(client) ⇒ SmsNumber
constructor
A new instance of SmsNumber.
-
#recover(account_email_or_account_id_or_account_self) ⇒ Object
Recover an account using an SMS recovery code.
-
#sms_number(account_email_or_account_id_or_account_self) ⇒ Object
Recover an account using an SMS recovery code.
Constructor Details
#initialize(client) ⇒ SmsNumber
Returns a new instance of SmsNumber.
2495 2496 2497 |
# File 'lib/platform-api/client.rb', line 2495 def initialize(client) @client = client end |
Instance Method Details
#confirm(account_email_or_account_id_or_account_self) ⇒ Object
Confirm an SMS number change with a confirmation code
2516 2517 2518 |
# File 'lib/platform-api/client.rb', line 2516 def confirm(account_email_or_account_id_or_account_self) @client.sms_number.confirm(account_email_or_account_id_or_account_self) end |
#recover(account_email_or_account_id_or_account_self) ⇒ Object
Recover an account using an SMS recovery code
2509 2510 2511 |
# File 'lib/platform-api/client.rb', line 2509 def recover(account_email_or_account_id_or_account_self) @client.sms_number.recover(account_email_or_account_id_or_account_self) end |
#sms_number(account_email_or_account_id_or_account_self) ⇒ Object
Recover an account using an SMS recovery code
2502 2503 2504 |
# File 'lib/platform-api/client.rb', line 2502 def sms_number(account_email_or_account_id_or_account_self) @client.sms_number.sms_number(account_email_or_account_id_or_account_self) end |