src/lib/model/baseparams.model.ts
Representation of a dms objects base params
Properties |
|
contentFileName |
contentFileName:
|
Type : string
|
Filename of the objects content |
contentFileSize |
contentFileSize:
|
Type : number
|
Filesize of the objects content |
contentId |
contentId:
|
Type : string
|
Optional |
objects content ID |
createdBy |
createdBy:
|
Type : string
|
Creators name |
createdOn |
createdOn:
|
Type : Date
|
Create date |
digest |
digest:
|
Type : string
|
Optional |
objects content digest |
id |
id:
|
Type : string
|
ID |
mimeGroup |
mimeGroup:
|
Type : string
|
Optional |
objects content mime type group |
mimeType |
mimeType:
|
Type : string
|
Optional |
objects content mime type |
modifiedBy |
modifiedBy:
|
Type : string
|
Last modifiers name |
modifiedOn |
modifiedOn:
|
Type : Date
|
Modification date |
type |
type:
|
Type : string
|
Object type name |
version |
version:
|
Type : number
|
objects version |
export interface BaseParams {
/**
* ID
*/
id: string;
/**
* Object type name
*/
type: string;
/**
* Filename of the objects content
*/
contentFileName: string;
/**
* Filesize of the objects content
*/
contentFileSize: number;
/**
* Modification date
*/
modifiedOn: Date;
/**
* Last modifiers name
*/
modifiedBy: string;
/**
* Create date
*/
createdOn: Date;
/**
* Creators name
*/
createdBy: string;
/**
* objects version
*/
version: number;
/**
* objects content mime type group
*/
mimeGroup?: string;
/**
* objects content digest
*/
digest?: string;
/**
* objects content ID
*/
contentId?: string;
/**
* objects content mime type
*/
mimeType?: string;
}