/** * Finix API */ import { ApplicationLinksSelf } from './applicationLinksSelf'; import { MerchantLinksApplication } from './merchantLinksApplication'; import { MerchantLinksIdentity } from './merchantLinksIdentity'; import { MerchantLinksVerifications } from './merchantLinksVerifications'; import { PaymentInstrumentLinksAuthorizations } from './paymentInstrumentLinksAuthorizations'; import { PaymentInstrumentLinksTransfers } from './paymentInstrumentLinksTransfers'; import { PaymentInstrumentLinksUpdates } from './paymentInstrumentLinksUpdates'; /** * 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 PaymentInstrumentLinks { 'application'?: MerchantLinksApplication; 'authorizations'?: PaymentInstrumentLinksAuthorizations; 'identity'?: MerchantLinksIdentity; 'self'?: ApplicationLinksSelf; 'transfers'?: PaymentInstrumentLinksTransfers; 'updates'?: PaymentInstrumentLinksUpdates; 'verifications'?: MerchantLinksVerifications; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }