CodeDto

data class CodeDto(var type: CodeTypeDto? = null, var text: String? = null)

Parameters

type
text

The actual value of the code found in the document.

Constructors

Link copied to clipboard
constructor(type: CodeTypeDto? = null, text: String? = null)

Properties

Link copied to clipboard
var text: String?
Link copied to clipboard
@Valid
var type: CodeTypeDto?