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)