Skip to content

Files

67 lines (54 loc) · 1.25 KB

customfieldcreate.md

File metadata and controls

67 lines (54 loc) · 1.25 KB

CustomFieldCreate

Supported Types

components.CustomFieldCreateCheckbox

const value: components.CustomFieldCreateCheckbox = {
  slug: "<value>",
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
  properties: {},
};

components.CustomFieldCreateDate

const value: components.CustomFieldCreateDate = {
  slug: "<value>",
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
  properties: {},
};

components.CustomFieldCreateNumber

const value: components.CustomFieldCreateNumber = {
  slug: "<value>",
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
  properties: {},
};

components.CustomFieldCreateSelect

const value: components.CustomFieldCreateSelect = {
  slug: "<value>",
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
  properties: {
    options: [
      {
        value: "<value>",
        label: "<value>",
      },
    ],
  },
};

components.CustomFieldCreateText

const value: components.CustomFieldCreateText = {
  slug: "<value>",
  name: "<value>",
  organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
  properties: {},
};