/* tslint:disable */ /* eslint-disable */ /** * cards * 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. */ /** * A full or partial reversal of a card transaction. */ export interface CardTransactionReversal { /** * The amount of money to be credited in the client\'s account from the original card transaction. */ amount: number; /** * The ISO currency code in which the card reversal transaction is posted. The amounts are stored in the base currency, but the transaction can be created with a foreign currency. */ currencyCode?: string; /** * The encoded key of the entity, generated, globally unique */ encodedKey?: string; /** * The external reference ID to be used to reference the card reversal transaction in subsequent requests. */ externalReferenceId: string; /** * The id of the Deposit Transaction */ id?: number; /** * The ID of the channel through which the payment is done. If the value is not present, the value from the source card transaction is copied. */ transactionChannelId?: string; }