/** * 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. */ /** * * @export * @interface LemonWayCommission */ export interface LemonWayCommission { /** * * @type {string} * @memberof LemonWayCommission */ idp2p?: string; /** * Amounts are represented as integer in cents (Euro) * Represented as an integer in cents (Ero) * @type {number} * @memberof LemonWayCommission */ amount?: number; } /** * Check if a given object implements the LemonWayCommission interface. */ export declare function instanceOfLemonWayCommission(value: object): boolean; export declare function LemonWayCommissionFromJSON(json: any): LemonWayCommission; export declare function LemonWayCommissionFromJSONTyped(json: any, ignoreDiscriminator: boolean): LemonWayCommission; export declare function LemonWayCommissionToJSON(value?: LemonWayCommission | null): any;