/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TrelloIDAsResponse } from "../definitions/TrelloIDAsResponse"; export interface ActionAsResponse { id?: TrelloIDAsResponse; idMemberCreator?: TrelloIDAsResponse; data?: { text?: string; card?: { id?: TrelloIDAsResponse; name?: string; idShort?: number; shortLink?: string; }; board?: { id?: TrelloIDAsResponse; name?: string; shortLink?: string; }; list?: { id?: TrelloIDAsResponse; name?: string; }; }; type?: string; date?: string; limits?: { reactions?: { perAction?: { status?: string; disableAt?: number; warnAt?: number; }; uniquePerAction?: { status?: string; disableAt?: number; warnAt?: number; }; }; }; display?: { translationKey?: string; entities?: { contextOn?: { type?: string; translationKey?: string; hideIfContext?: boolean; idContext?: TrelloIDAsResponse; }; card?: { type?: string; hideIfContext?: boolean; id?: TrelloIDAsResponse; shortLink?: string; text?: string; }; comment?: { type?: string; text?: string; }; memberCreator?: { type?: string; id?: TrelloIDAsResponse; username?: string; text?: string; }; }; }; memberCreator?: { id?: TrelloIDAsResponse; activityBlocked?: boolean; avatarHash?: string; avatarUrl?: string; fullName?: string; idMemberReferrer?: TrelloIDAsResponse; initials?: string; username?: string; }; } //# sourceMappingURL=ActionAsResponse.d.ts.map