Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 914 Bytes

BlocklistIdentifier.md

File metadata and controls

30 lines (24 loc) · 914 Bytes

ClerkBackend::BlocklistIdentifier

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]
identifier String An email address, email domain, phone number or web3 wallet. [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::BlocklistIdentifier.new(
  object: null,
  id: null,
  identifier: null,
  identifier_type: null,
  instance_id: null,
  created_at: null,
  updated_at: null
)