AssetPortfolioItemDto

data class AssetPortfolioItemDto(var assetId: String? = null, var assetNumber: String? = null, var assetType: AssetTypeEnumDto? = null, var amount: AmountDto? = null)

Item of a portfolio asset.

Parameters

assetId

Unique ID of an asset.

assetNumber

Unique ID of an asset assigned by the bank or custodian.

assetType
amount

Constructors

Link copied to clipboard
constructor(assetId: String? = null, assetNumber: String? = null, assetType: AssetTypeEnumDto? = null, amount: AmountDto? = null)

Properties

Link copied to clipboard
@Valid
var amount: AmountDto?
Link copied to clipboard
@get:Size(max = 50)
var assetId: String?
Link copied to clipboard
@get:Size(max = 50)
var assetNumber: String?
Link copied to clipboard