Record Class PaymentRequest

java.lang.Object
java.lang.Record
api.mpba.rastvdmy.dto.request.PaymentRequest
Record Components:
id - The unique identifier for the payment.
senderName - The name of the payment sender.
recipientName - The name of the payment recipient.
dateTime - The date and time of the payment.
description - A description or note associated with the payment.
amount - The amount of the payment.
type - The type of the payment (e.g., transfer, purchase).
status - The financial status of the payment (e.g., pending, completed).
currency - The currency in which the payment is made.

public record PaymentRequest(UUID id, String senderName, String recipientName, LocalDate dateTime, String description, BigDecimal amount, PaymentType type, FinancialStatus status, Currency currency) extends Record
This class represents a payment request in the banking system.
  • Constructor Details

    • PaymentRequest

      public PaymentRequest(UUID id, String senderName, String recipientName, LocalDate dateTime, String description, BigDecimal amount, PaymentType type, FinancialStatus status, Currency currency)
      Creates an instance of a PaymentRequest record class.
      Parameters:
      id - the value for the id record component
      senderName - the value for the senderName record component
      recipientName - the value for the recipientName record component
      dateTime - the value for the dateTime record component
      description - the value for the description record component
      amount - the value for the amount record component
      type - the value for the type record component
      status - the value for the status record component
      currency - the value for the currency record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • id

      public UUID id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component
    • senderName

      public String senderName()
      Returns the value of the senderName record component.
      Returns:
      the value of the senderName record component
    • recipientName

      public String recipientName()
      Returns the value of the recipientName record component.
      Returns:
      the value of the recipientName record component
    • dateTime

      public LocalDate dateTime()
      Returns the value of the dateTime record component.
      Returns:
      the value of the dateTime record component
    • description

      public String description()
      Returns the value of the description record component.
      Returns:
      the value of the description record component
    • amount

      public BigDecimal amount()
      Returns the value of the amount record component.
      Returns:
      the value of the amount record component
    • type

      public PaymentType type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component
    • status

      public FinancialStatus status()
      Returns the value of the status record component.
      Returns:
      the value of the status record component
    • currency

      public Currency currency()
      Returns the value of the currency record component.
      Returns:
      the value of the currency record component