BankDocumentCategoryDto

data class BankDocumentCategoryDto(var id: String? = null, var code: String? = null, var sortCode: String? = null, var type: BankDocumentCategoryTypeDto? = null, var name: String? = null, var visible: Boolean? = true, var dateCreated: OffsetDateTime? = null)

Category data

Parameters

id

ID of the Category.

code

Unique key to identify category (unique inside same orun_id and same type).

sortCode

Sort code determines sort order of category.

type
name

Short description (name) for a category.

visible

Indicates whether the category should be displayed on GUI.

dateCreated

Date and time when the category was created.

Constructors

Link copied to clipboard
constructor(id: String? = null, code: String? = null, sortCode: String? = null, type: BankDocumentCategoryTypeDto? = null, name: String? = null, visible: Boolean? = true, dateCreated: OffsetDateTime? = null)

Properties

Link copied to clipboard
@get:Size(max = 20)
var code: String?
Link copied to clipboard
Link copied to clipboard
@get:Size(max = 100)
var id: String?
Link copied to clipboard
@get:Size(max = 100)
var name: String?
Link copied to clipboard
@get:Size(max = 50)
var sortCode: String?
Link copied to clipboard
Link copied to clipboard