UNPKG

@agravity/private

Version:

The Agravity GlobalDAM API which allowes authenticated user to access the Agravity GlobalDAM Backend

44 lines (42 loc) 1.16 kB
/** * Agravity OpenAPI Documentation - Private Functions * * Contact: support@agravity.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export interface HistoryEntry { id?: string | null; entity_type?: string | null; new_value?: object | null; old_value?: object | null; name?: HistoryEntry.NameEnum; status?: string | null; created_date?: string | null; created_by?: string | null; modified_date?: string | null; modified_by?: string | null; pk?: string | null; _etag?: string | null; } export namespace HistoryEntry { export const NameEnum = { Created: 'Created', Updated: 'Updated', Deleted: 'Deleted', Removed: 'Removed', Published: 'Published', Unpublished: 'Unpublished', Locked: 'Locked', Unlocked: 'Unlocked', Renewed: 'Renewed', Versioned: 'Versioned', DirtyMarked: 'DirtyMarked', SystemUpgrade: 'SystemUpgrade', Untracked: 'Untracked', Restored: 'Restored' } as const; export type NameEnum = (typeof NameEnum)[keyof typeof NameEnum]; }