/** * Class represents the Proximax data model */ export declare class ProximaxDataModel { /** * The datahash */ readonly dataHash: string; /** * The timestamp */ readonly timestamp: number; /** * The data digest */ readonly digest?: string | undefined; /** * The content description */ readonly description?: string | undefined; /** * The content type */ readonly contentType?: string | undefined; /** * The content metadata */ readonly metadata?: Map | undefined; /** * The content name */ readonly name?: string | undefined; constructor( /** * The datahash */ dataHash: string, /** * The timestamp */ timestamp: number, /** * The data digest */ digest?: string | undefined, /** * The content description */ description?: string | undefined, /** * The content type */ contentType?: string | undefined, /** * The content metadata */ metadata?: Map | undefined, /** * The content name */ name?: string | undefined); toJSON(): object; }