Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 858 Bytes

File metadata and controls

24 lines (18 loc) · 858 Bytes

SendX::RestRCustomField

Properties

Name Type Description Notes
id String Unique field identifier with field_ prefix [optional]
name String Custom field name [optional]
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) [optional]
description String Field description for documentation [optional]

Example

require 'sendx-ruby-sdk'

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