/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TrelloIDAsResponse } from "../definitions/TrelloIDAsResponse"; import { PrefsAsResponse } from "../definitions/PrefsAsResponse"; import { LimitsAsResponse } from "../definitions/LimitsAsResponse"; export interface BoardAsResponse { id: TrelloIDAsResponse; /** * The name of the board. */ name?: string; desc?: string; descData?: string; closed?: boolean; idMemberCreator?: TrelloIDAsResponse; idOrganization?: TrelloIDAsResponse; pinned?: boolean; url?: string; shortUrl?: string; prefs?: PrefsAsResponse; labelNames?: { green?: string; yellow?: string; orange?: string; red?: string; purple?: string; blue?: string; sky?: string; lime?: string; pink?: string; black?: string; }; limits?: LimitsAsResponse; starred?: boolean; memberships?: string; shortLink?: string; subscribed?: boolean; powerUps?: string; dateLastActivity?: string; dateLastView?: string; idTags?: string; datePluginDisable?: string; creationMethod?: string; ixUpdate?: number; templateGallery?: string; enterpriseOwned?: boolean; } //# sourceMappingURL=BoardAsResponse.d.ts.map