export interface CustomFieldOptionCreate { /** * The value of the custom field option. */ value: string; /** * For cascading options, the ID of the custom field object containing the cascading option. */ optionId?: string; /** * Whether the option is disabled. */ disabled?: boolean; } //# sourceMappingURL=CustomFieldOptionCreate.d.ts.map