/** * 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 { Links } from './Links'; import type { TransactionsTransactionOut } from './TransactionsTransactionOut'; /** * * @export * @interface GetChargebacksOutput */ export interface GetChargebacksOutput { /** * * @type {TransactionsTransactionOut} * @memberof GetChargebacksOutput */ transactions?: TransactionsTransactionOut; /** * * @type {Links} * @memberof GetChargebacksOutput */ links?: Links; /** * * @type {Error} * @memberof GetChargebacksOutput */ error?: Error; } /** * Check if a given object implements the GetChargebacksOutput interface. */ export declare function instanceOfGetChargebacksOutput(value: object): boolean; export declare function GetChargebacksOutputFromJSON(json: any): GetChargebacksOutput; export declare function GetChargebacksOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetChargebacksOutput; export declare function GetChargebacksOutputToJSON(value?: GetChargebacksOutput | null): any;