Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 696 Bytes

CreateOrganizationDomainRequest.md

File metadata and controls

22 lines (16 loc) · 696 Bytes

ClerkBackend::CreateOrganizationDomainRequest

Properties

Name Type Description Notes
name String The name of the new domain [optional]
enrollment_mode String The enrollment_mode for the new domain. This can be `automatic_invitation`, `automatic_suggestion` or `manual_invitation` [optional]
verified Boolean The status of domain's verification. Defaults to true [optional]

Example

require 'clerk-sdk-ruby-backend'

instance = ClerkBackend::CreateOrganizationDomainRequest.new(
  name: null,
  enrollment_mode: null,
  verified: null
)