BankGroupDto

data class BankGroupDto(var id: String? = null, var groupName: String? = null, var numberOfBanks: BigDecimal? = null)

Provides a list of Bank groups.

Parameters

id

Unique ID for the Bank Group.

groupName

Name of the Bank group.

numberOfBanks

Number of Banks belonging to the group.

Constructors

Link copied to clipboard
constructor(id: String? = null, groupName: String? = null, numberOfBanks: BigDecimal? = null)

Properties

Link copied to clipboard
@get:Size(max = 200)
var groupName: String?
Link copied to clipboard
var id: String?
Link copied to clipboard
@get:DecimalMin(value = "0")
var numberOfBanks: BigDecimal?