/** * Finix API */ import { ApplicationLinksSelf } from './applicationLinksSelf'; import { ApplicationProfileLinksApplication } from './applicationProfileLinksApplication'; import { AuthorizationLinksDevice } from './authorizationLinksDevice'; import { AuthorizationLinksMerchantIdentity } from './authorizationLinksMerchantIdentity'; import { TransferLinksDestination } from './transferLinksDestination'; import { TransferLinksDisputedTransfer } from './transferLinksDisputedTransfer'; import { TransferLinksDisputes } from './transferLinksDisputes'; import { TransferLinksFeeProfile } from './transferLinksFeeProfile'; import { TransferLinksFees } from './transferLinksFees'; import { TransferLinksParent } from './transferLinksParent'; import { TransferLinksPaymentInstruments } from './transferLinksPaymentInstruments'; import { TransferLinksReversals } from './transferLinksReversals'; import { TransferLinksSource } from './transferLinksSource'; /** * For your convenience, every response includes several URLs which link to resources relevant to the request. You can use these `_links` to make your follow-up requests and quickly access relevant IDs. */ export declare class TransferLinks { 'application'?: ApplicationProfileLinksApplication; 'destination'?: TransferLinksDestination; 'device'?: AuthorizationLinksDevice; 'disputes'?: TransferLinksDisputes; 'feeProfile'?: TransferLinksFeeProfile; 'fees'?: TransferLinksFees; 'merchantIdentity'?: AuthorizationLinksMerchantIdentity; 'paymentInstruments'?: TransferLinksPaymentInstruments; 'disputedTransfer'?: TransferLinksDisputedTransfer; 'reversals'?: TransferLinksReversals; 'self'?: ApplicationLinksSelf; 'parent'?: TransferLinksParent; 'source'?: TransferLinksSource; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }