Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 963 Bytes

AllowlistIdentifier.md

File metadata and controls

32 lines (26 loc) · 963 Bytes

ClerkBackend::AllowlistIdentifier

Properties

Name Type Description Notes
object String String representing the object's type. Objects of the same type share the same value. [optional]
id String [optional]
invitation_id String [optional]
identifier String An email address or a phone number. [optional]
identifier_type String [optional]
instance_id String [optional]
created_at Integer Unix timestamp of creation [optional]
updated_at Integer Unix timestamp of last update. [optional]

Example

require 'clerk-sdk-ruby-backend'

instance = ClerkBackend::AllowlistIdentifier.new(
  object: null,
  id: null,
  invitation_id: null,
  identifier: null,
  identifier_type: null,
  instance_id: null,
  created_at: null,
  updated_at: null
)