/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Card } from './Card'; /** * * @export * @interface AccountCardsOutput */ export interface AccountCardsOutput { /** * Dispalays a list of documents that have changed since original enrty date * @type {Array} * @memberof AccountCardsOutput */ cards?: Array; /** * * @type {Error} * @memberof AccountCardsOutput */ error?: Error; } /** * Check if a given object implements the AccountCardsOutput interface. */ export declare function instanceOfAccountCardsOutput(value: object): boolean; export declare function AccountCardsOutputFromJSON(json: any): AccountCardsOutput; export declare function AccountCardsOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountCardsOutput; export declare function AccountCardsOutputToJSON(value?: AccountCardsOutput | null): any;