/** * Finix API */ import { AdditionalPurchaseData } from './additionalPurchaseData'; export declare class UpdateAuthorizationRequest { 'additionalPurchaseData'?: AdditionalPurchaseData; /** * The amount of the `Authorization` you would like to capture in cents. Must be less than or equal to the `amount` of the `Authorization`. */ 'captureAmount'?: number; /** * The amount of the `Authorization` you\'d like to collect as your fee in cents. Defaults to zero (must be less than or equal to the `amount`). */ 'fee'?: number; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; /** * Set to **True** to void the `Authorization`. */ 'voidMe'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }