/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TrelloIDAsResponse } from "../definitions/TrelloIDAsResponse"; import { ColorAsResponse } from "../definitions/ColorAsResponse"; export interface LabelAsResponse { /** * The ID of the label. */ id?: TrelloIDAsResponse; /** * The ID of the board the label is on. */ idBoard?: TrelloIDAsResponse; /** * The name displayed for the label. */ name?: string; /** * The color of the label. Null means no color and the label will not be shown on the front of Cards. */ color?: ColorAsResponse; } //# sourceMappingURL=LabelAsResponse.d.ts.map