Interface CustomFieldInterface

interface CustomFieldInterface {
    canonicalName: string;
    createdAt: Date;
    description: string;
    enabled: boolean;
    entityType: string;
    fieldType: string;
    iconSetIdentifier: string;
    id: string;
    name: string;
    position: number;
    updatedAt: Date;
    values: default[];
}

Hierarchy

  • default
    • CustomFieldInterface

Implemented by

Properties

canonicalName: string
createdAt: Date
description: string
enabled: boolean
entityType: string
fieldType: string
iconSetIdentifier: string
id: string
name: string
position: number
updatedAt: Date
values: default[]