Interface ContentFields<T>

interface ContentFields<T> {
    allowedResources?: ContentTypeAllowedResources[];
    apiName?: string;
    defaultValue?: T;
    deleted?: boolean;
    disabled?: boolean;
    id: string;
    items?: Item;
    linkType?: string;
    localized: boolean;
    name: string;
    omitted?: boolean;
    required: boolean;
    type: string;
    validations?: ContentTypeFieldValidation[];
}

Type Parameters

Hierarchy

  • Item
    • ContentFields

Properties

allowedResources?: ContentTypeAllowedResources[]
apiName?: string
defaultValue?: T
deleted?: boolean
disabled?: boolean
id: string
items?: Item
linkType?: string
localized: boolean
name: string
omitted?: boolean
required: boolean
type: string