/** * Finix API */ import { ApplicationLinksApplicationProfile } from './applicationLinksApplicationProfile'; import { ApplicationLinksSelf } from './applicationLinksSelf'; /** * 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 ApplicationLinks { 'applicationProfile'?: ApplicationLinksApplicationProfile; 'authorizations'?: ApplicationLinksApplicationProfile; 'disputes'?: ApplicationLinksApplicationProfile; 'identities'?: ApplicationLinksApplicationProfile; 'merchants'?: ApplicationLinksApplicationProfile; 'ownerIdentity'?: ApplicationLinksApplicationProfile; 'paymentInstruments'?: ApplicationLinksApplicationProfile; 'processors'?: ApplicationLinksApplicationProfile; 'reversals'?: ApplicationLinksApplicationProfile; 'self'?: ApplicationLinksSelf; 'settlements'?: ApplicationLinksApplicationProfile; 'tokens'?: ApplicationLinksApplicationProfile; 'transfers'?: ApplicationLinksApplicationProfile; 'users'?: ApplicationLinksApplicationProfile; 'webhooks'?: ApplicationLinksApplicationProfile; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }