/** * Finix API */ import { ApplicationLinksSelf } from './applicationLinksSelf'; import { InstrumentUpdateLinksApplication } from './instrumentUpdateLinksApplication'; import { InstrumentUpdateLinksPaymentInstrument } from './instrumentUpdateLinksPaymentInstrument'; /** * 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 InstrumentUpdateLinks { 'self'?: ApplicationLinksSelf; 'paymentInstrument'?: InstrumentUpdateLinksPaymentInstrument; 'application'?: InstrumentUpdateLinksApplication; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }