/** * Finix API */ import { InstrumentUpdateLinks } from './instrumentUpdateLinks'; export declare class InstrumentUpdate { /** * The ID of the `instrument_updates` resource. */ 'id'?: string; /** * Timestamp of when the object was created. */ 'createdAt'?: Date; /** * Timestamp of when the object was last updated. */ 'updatedAt'?: Date; /** * A randomly generated value that will be associated with this `instrument_update` resource. */ 'idempotencyId'?: string; /** * The `Merchant` ID associated with the `instrument_updates`. */ 'merchant'?: string; /** * The status of the `instrument_updates` resource and update request. */ 'state'?: string; 'links'?: InstrumentUpdateLinks; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }