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.
2836 2837 2838 |
# File 'lib/platform-api/client.rb', line 2836 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
2857 2858 2859 |
# File 'lib/platform-api/client.rb', line 2857 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
2850 2851 2852 |
# File 'lib/platform-api/client.rb', line 2850 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
2843 2844 2845 |
# File 'lib/platform-api/client.rb', line 2843 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 |