/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TrelloIDAsResponse } from "../definitions/TrelloIDAsResponse"; export interface CustomFieldAsResponse { id?: TrelloIDAsResponse; idModel?: string; modelType?: "card" | "board" | "member"; fieldGroup?: string; display?: { cardFront?: boolean; name?: string; pos?: string; options?: Array<{ id?: TrelloIDAsResponse; idCustomField?: TrelloIDAsResponse; value?: { text?: string; }; color?: string; pos?: number; }>; }; type?: string; } //# sourceMappingURL=CustomFieldAsResponse.d.ts.map