/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TrelloIDAsResponse } from "../definitions/TrelloIDAsResponse"; import { ChecklistAsResponse } from "../definitions/ChecklistAsResponse"; import { LabelAsResponse } from "../definitions/LabelAsResponse"; import { LimitsAsResponse } from "../definitions/LimitsAsResponse"; import { ColorAsResponse } from "../definitions/ColorAsResponse"; export interface CardAsResponse { id?: TrelloIDAsResponse; address?: string; badges?: { attachmentsByType?: { trello?: { board?: number; card?: number; }; }; location?: boolean; votes?: number; viewingMemberVoted?: boolean; subscribed?: boolean; fogbugz?: string; checkItems?: number; checkItemsChecked?: number; comments?: number; attachments?: number; description?: boolean; due?: string; start?: string; dueComplete?: boolean; }; checkItemStates?: Array; closed?: boolean; coordinates?: string; creationMethod?: string; dateLastActivity?: string; desc?: string; descData?: { emoji?: any; }; due?: string; dueReminder?: string; email?: string; idBoard?: TrelloIDAsResponse; idChecklists?: Array; idLabels?: Array; idList?: TrelloIDAsResponse; idMembers?: Array; idMembersVoted?: Array; idShort?: number; idAttachmentCover?: TrelloIDAsResponse; labels?: Array; limits?: LimitsAsResponse; locationName?: string; manualCoverAttachment?: boolean; name?: string; pos?: number; shortLink?: string; shortUrl?: string; subscribed?: boolean; url?: string; cover?: { idAttachment?: TrelloIDAsResponse; color?: ColorAsResponse; idUploadedBackground?: boolean; size?: "normal"; brightness?: "light" | "dark"; isTemplate?: boolean; }; } //# sourceMappingURL=CardAsResponse.d.ts.map