Card settings, such as fields and rules

interface CardFieldSettings {
    additionalFields?: FieldInfo[];
    assignedToDisplayFormat?: IdentityDisplayFormat;
    coreFields?: FieldInfo[];
    showAssignedTo?: boolean;
    showChildRollup?: boolean;
    showEmptyFields?: boolean;
    showId?: boolean;
    showParent?: boolean;
    showState?: boolean;
    showTags?: boolean;
}

Properties

additionalFields?: FieldInfo[]

A collection of field information of additional fields on cards. The index in the collection signifies the order of the field among the additional fields. Currently unused. Should be used with User Story 691539: Card setting: additional fields

assignedToDisplayFormat?: IdentityDisplayFormat

Display format for the assigned to field

coreFields?: FieldInfo[]

A collection of field information of rendered core fields on cards.

showAssignedTo?: boolean

Flag indicating whether to show assigned to field on cards. When true, AssignedToDisplayFormat will determine how the field will be displayed

showChildRollup?: boolean

Flag indicating whether to show child rollup on cards

showEmptyFields?: boolean

Flag indicating whether to show empty fields on cards

showId?: boolean

Flag indicating whether to show ID on cards

showParent?: boolean

Flag indicating whether to show parent field on cards

showState?: boolean

Flag indicating whether to show state field on cards

showTags?: boolean

Flag indicating whether to show tags on cards