/* 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 request to decrease/increase the amount of an authorization hold. */ export interface AuthorizationHoldAmountAdjustmentRequest { /** * Whether the given request should be accepted without balance validations. */ advice?: boolean; /** * The amount of money to be subtracted/added to the authorization hold amount. For the decrease: if the amount is greater or equal to the authorization hold amount, then the authorization hold is reversed. */ amount: number; /** * The ISO currency code in which the hold was created. */ currencyCode?: string; /** * The encoded key of the entity, generated, globally unique */ encodedKey?: string; /** * The external reference ID of the decrease/increase request (not of the authorization hold). */ externalReferenceId?: string; }