interface Detail {
    displayedToUsers: boolean;
    fieldType: string;
    id: string;
    name: string;
    options: null | string[];
    required: boolean;
    type: string;
    value: any;
}

Properties

displayedToUsers: boolean
fieldType: string
id: string
name: string
options: null | string[]
required: boolean
type: string
value: any