Interface LabelInterface

interface LabelInterface {
    appUrl: string;
    archived: boolean;
    color: null | string;
    createdAt: null | Date;
    description: null | string;
    entityType: string;
    externalId: null | string;
    id: number;
    name: string;
    stats: object[];
    updatedAt: null | Date;
}

Hierarchy

  • default
    • LabelInterface

Implemented by

Properties

appUrl: string
archived: boolean
color: null | string
createdAt: null | Date
description: null | string
entityType: string
externalId: null | string
id: number
name: string
stats: object[]
updatedAt: null | Date