java.lang.Object
es.kukenan.smartfi.microservice.contracts.api.products.ProductDto
All Implemented Interfaces:
Dto, Visitable, Serializable
Direct Known Subclasses:
AccountDetailDto, CardDetailDto, CreditDetailDto, DepositDetailDto, EquityDetailDto, FundDetailDto, GuaranteeDetailDto, GuaranteePositionDetailDto, InversisProductResponseDto, LoanDetailDto, ManagedPortfolioDetailDto, PensionDetailDto, WalletEquityDetailDto, WalletEquityPositionDetailDto

public class ProductDto extends Object implements Dto
This class is use to describe the contact of a Product object.
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      serialVersionUID identifier.
      See Also:
    • id

      private String id
      Skyline product identifier.
    • name

      private String name
      Product name.
    • alias

      private String alias
      Product alias.
    • productNumber

      private ProductNumberDto productNumber
      Product number.
    • balance

      private AmountDto balance
      Accounting balance / Outstanding balance.
    • postedBalance

      private AmountDto postedBalance
      Available balance to date.
    • relationType

      private IdNamePairDto relationType
      Type of ownership.
    • productType

      private IdNamePairDto productType
      Skyline product type.
    • productSubtype

      private IdNamePairDto productSubtype
      Skyline product subtype type.
    • signature

      private SignatureDto signature
      Signature value.
    • status

      private IdNamePairDto status
      status value.
    • coreProductTypeId

      private String coreProductTypeId
      core product type id.
    • currency

      private CurrencyDto currency
      currency.
    • backofficeId

      private Integer backofficeId
      backoffice id.
    • coreProductId

      private String coreProductId
      core product id.
    • limitAmount

      private AmountDto limitAmount
      limit Amount.
    • coreProductDetail

      private String coreProductDetail
      core product detail.
  • Constructor Details

    • ProductDto

      public ProductDto()
  • Method Details

    • accept

      public void accept(Visitor visitor)
      Description copied from interface: Visitable
      Accept a visitor. Normally, this is implemented in the concrete class by delegating to a concrete visit method in the visitor.
      Specified by:
      accept in interface Visitable
      Parameters:
      visitor - visitor.