Interface IRequiredFieldsCard

interface IRequiredFieldsCard {
    board: string;
    board_id?: string;
    created_at?: Date;
    custom_fields?: ICustomField[];
    custom_id?: string;
    description?: string;
    followers?: IFollower[];
    id: string;
    list: string;
    list_id?: string;
    moves?: ICardMove[];
    name: string;
    order?: string;
    organization?: IOrganization;
    person?: string | IPerson;
    persons?: IPerson[];
    photo_url?: string;
    prediction_date?: string;
    previous_cards?: string[];
    rating?: number;
    recurring_value?: number;
    service?: string | IService;
    status?: CARD_STATUS;
    tags?: ITag[];
    unread?: number;
    updated_at?: Date;
    user?: IUser;
    value?: number;
    win?: boolean;
    workspace?: IWorkspace;
    workspace_id?: string;
}

Hierarchy (View Summary)

Properties

board: string
board_id?: string
created_at?: Date
custom_fields?: ICustomField[]
custom_id?: string
description?: string
followers?: IFollower[]
id: string
list: string
list_id?: string
moves?: ICardMove[]
name: string
order?: string
organization?: IOrganization
person?: string | IPerson
persons?: IPerson[]
photo_url?: string
prediction_date?: string
previous_cards?: string[]
rating?: number
recurring_value?: number
service?: string | IService
status?: CARD_STATUS
tags?: ITag[]
unread?: number
updated_at?: Date
user?: IUser
value?: number
win?: boolean
workspace?: IWorkspace
workspace_id?: string