/** * 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 MoneyInSubscriptionInitInput */ export interface MoneyInSubscriptionInitInput { /** * Subscription ID * @type {string} * @memberof MoneyInSubscriptionInitInput */ subscriptionId: string; /** * Number of operations to be performed on this subscription * @type {number} * @memberof MoneyInSubscriptionInitInput */ count: number; /** * Payment Account ID to Credit * @type {string} * @memberof MoneyInSubscriptionInitInput */ accountId: string; /** * Amount to Debit * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyInSubscriptionInitInput */ totalAmount?: number; /** * Your Fee * Amounts are given as integer numbers in cents * @type {number} * @memberof MoneyInSubscriptionInitInput */ commissionAmount?: number; /** * Comment Regarding the Transaction * @type {string} * @memberof MoneyInSubscriptionInitInput */ comment?: string; /** * If true: * 1. [amountCom] will be ignored and will be replaced with Lemonway's fee * 2. You will not receive any fee * @type {boolean} * @memberof MoneyInSubscriptionInitInput */ autoCommission?: boolean; } /** * Check if a given object implements the MoneyInSubscriptionInitInput interface. */ export declare function instanceOfMoneyInSubscriptionInitInput(value: object): boolean; export declare function MoneyInSubscriptionInitInputFromJSON(json: any): MoneyInSubscriptionInitInput; export declare function MoneyInSubscriptionInitInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInSubscriptionInitInput; export declare function MoneyInSubscriptionInitInputToJSON(value?: MoneyInSubscriptionInitInput | null): any;