/** * Finix API */ import { AssociatedIdentityEntity } from './associatedIdentityEntity'; import { IdentityLinks } from './identityLinks'; /** * */ export declare class AssociatedIdentity { /** * The ID of the `Identity` resource. */ 'id'?: string; /** * Timestamp of when the object was created. */ 'createdAt'?: Date; /** * Timestamp of when the object was last updated. */ 'updatedAt'?: Date; /** * ID of the `Application` associated with the `Identity`. */ 'application'?: string; 'entity'?: AssociatedIdentityEntity; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; 'links'?: IdentityLinks; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }