/** * Finix API */ import { IdentityLinksApplication } from './identityLinksApplication'; import { IdentityLinksAssociatedIdentities } from './identityLinksAssociatedIdentities'; import { IdentityLinksAuthorizations } from './identityLinksAuthorizations'; import { IdentityLinksDisputes } from './identityLinksDisputes'; import { IdentityLinksMerchants } from './identityLinksMerchants'; import { IdentityLinksPaymentInstruments } from './identityLinksPaymentInstruments'; import { IdentityLinksSelf } from './identityLinksSelf'; import { IdentityLinksSettlements } from './identityLinksSettlements'; import { IdentityLinksTransfers } from './identityLinksTransfers'; import { IdentityLinksVerifications } from './identityLinksVerifications'; /** * 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 IdentityLinks { 'self'?: IdentityLinksSelf; 'verifications'?: IdentityLinksVerifications; 'merchants'?: IdentityLinksMerchants; 'settlements'?: IdentityLinksSettlements; 'authorizations'?: IdentityLinksAuthorizations; 'transfers'?: IdentityLinksTransfers; 'paymentInstruments'?: IdentityLinksPaymentInstruments; 'associatedIdentities'?: IdentityLinksAssociatedIdentities; 'disputes'?: IdentityLinksDisputes; 'application'?: IdentityLinksApplication; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }