/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TrelloIDAsResponse } from "../definitions/TrelloIDAsResponse"; import { LimitsAsResponse } from "../definitions/LimitsAsResponse"; export interface TrelloListAsResponse { id?: TrelloIDAsResponse; /** * The name of the list */ name?: string; closed?: boolean; pos?: number; softLimit?: string; idBoard?: string; subscribed?: boolean; limits?: LimitsAsResponse; status?: string; creationMethod?: string; idOrganization?: string; nodeId?: string; } //# sourceMappingURL=TrelloListAsResponse.d.ts.map