java.lang.Object
es.kukenan.smartfi.microservice.contracts.api.cashflow.CashFlowDto
All Implemented Interfaces:
Dto, Visitable, Serializable

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

    • serialVersionUID

      private static final long serialVersionUID
      serialVersionUID.
      See Also:
    • date

      private LocalDate date
      creation date.
    • outcomeAmount

      private AmountDto outcomeAmount
      outcomeAmount values.
    • incomeAmount

      private AmountDto incomeAmount
      incomeAmount values.
    • balance

      private AmountDto balance
      balance values.
  • Constructor Details

    • CashFlowDto

      public CashFlowDto()
  • 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.