File

src/lib/model/baseparams.model.ts

Description

Representation of a dms objects base params

Index

Properties

Properties

contentFileName
contentFileName: string
Type : string

Filename of the objects content

contentFileSize
contentFileSize: number
Type : number

Filesize of the objects content

contentId
contentId: string
Type : string
Optional

objects content ID

createdBy
createdBy: string
Type : string

Creators name

createdOn
createdOn: Date
Type : Date

Create date

digest
digest: string
Type : string
Optional

objects content digest

id
id: string
Type : string

ID

mimeGroup
mimeGroup: string
Type : string
Optional

objects content mime type group

mimeType
mimeType: string
Type : string
Optional

objects content mime type

modifiedBy
modifiedBy: string
Type : string

Last modifiers name

modifiedOn
modifiedOn: Date
Type : Date

Modification date

type
type: string
Type : string

Object type name

version
version: number
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;
}

results matching ""

    No results matching ""