Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.17 KB

PhoneNumber.md

File metadata and controls

38 lines (32 loc) · 1.17 KB

ClerkBackend::PhoneNumber

Properties

Name Type Description Notes
id String [optional]
object String String representing the object's type. Objects of the same type share the same value.
phone_number String
reserved_for_second_factor Boolean [optional]
default_second_factor Boolean [optional]
reserved Boolean
verification PhoneNumberVerification
linked_to Array<IdentificationLink>
backup_codes Array<String> [optional]
created_at Integer Unix timestamp of creation
updated_at Integer Unix timestamp of creation

Example

require 'clerk-sdk-ruby-backend'

instance = ClerkBackend::PhoneNumber.new(
  id: null,
  object: null,
  phone_number: null,
  reserved_for_second_factor: null,
  default_second_factor: null,
  reserved: null,
  verification: null,
  linked_to: null,
  backup_codes: null,
  created_at: null,
  updated_at: null
)