Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 746 Bytes

File metadata and controls

22 lines (16 loc) · 746 Bytes

SendX::RestECustomField

Properties

Name Type Description Notes
name String Custom field name (must be unique within team)
type Integer Field data type. Values: - `0` - Text (max 255 characters) - `1` - Number (integer or decimal) - `2` - Date (YYYY-MM-DD format) - `3` - Boolean (true/false) - `4` - Phone number (international format)
description String Field description for documentation [optional]

Example

require 'sendx-ruby-sdk'

instance = SendX::RestECustomField.new(
  name: Account Type,
  type: null,
  description: Customer account classification
)