Extend the LosslessDto class with your own Dto classes to enable lossless parsing of int64 values. Decorate fields with @Int64String or @BigIntValue to specify how int64 JSON numbers should be parsed.

Example

class MyDto extends LosslessDto {
@Int64String
int64NumberField: string
@BigIntValue
bigintField: bigint
@ChildDto(MyChildDto)
childDtoField: MyChildDto
normalField: string
normalNumberField: number
}

Hierarchy (view full)

Constructors

Properties

camunda.document.type: string = 'camunda'

Document discriminator. Always set to "camunda".

contentHash: string

The hash of the document.

documentId: string

The ID of the document.

storeId: string

The ID of the document store.

Generated using TypeDoc