import type { attributes } from './attributes'; import type { CommonUserName } from './CommonUserName'; import type { CommonVersion } from './CommonVersion'; import type { MetaEntityReference } from './MetaEntityReference'; import type { MetaEntityStage } from './MetaEntityStage'; /** * meta information of an object. Will be returned by some resources. Can be set when patching or creating an object. Auto generated if not set. */ export declare type Meta = { version?: CommonVersion; /** * The date and time the object was last modified */ readonly lastModified?: number; lastModifiedBy?: CommonUserName; /** * The date and time the object was last modified */ readonly created?: number; createdBy?: CommonUserName; stage?: MetaEntityStage; derivedFrom?: MetaEntityReference; attributes?: attributes; };