Record Class SearchReportResponse

java.lang.Object
java.lang.Record
inha.git.report.api.controller.dto.response.SearchReportResponse

public record SearchReportResponse(@NotNull Integer idx, ReportTypeResponse reportType, ReportReasonResponse reportReason, SearchUserResponse reporter, SearchUserResponse reported, String description, @NotNull BaseEntity.State state, @NotNull LocalDateTime createdAt, LocalDateTime deletedAt) extends Record
  • Constructor Details

    • SearchReportResponse

      public SearchReportResponse(@NotNull @NotNull Integer idx, ReportTypeResponse reportType, ReportReasonResponse reportReason, SearchUserResponse reporter, SearchUserResponse reported, String description, @NotNull @NotNull BaseEntity.State state, @NotNull @NotNull LocalDateTime createdAt, LocalDateTime deletedAt)
      Creates an instance of a SearchReportResponse record class.
      Parameters:
      idx - the value for the idx record component
      reportType - the value for the reportType record component
      reportReason - the value for the reportReason record component
      reporter - the value for the reporter record component
      reported - the value for the reported record component
      description - the value for the description record component
      state - the value for the state record component
      createdAt - the value for the createdAt record component
      deletedAt - the value for the deletedAt 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.
    • idx

      @NotNull public @NotNull Integer idx()
      Returns the value of the idx record component.
      Returns:
      the value of the idx record component
    • reportType

      public ReportTypeResponse reportType()
      Returns the value of the reportType record component.
      Returns:
      the value of the reportType record component
    • reportReason

      public ReportReasonResponse reportReason()
      Returns the value of the reportReason record component.
      Returns:
      the value of the reportReason record component
    • reporter

      public SearchUserResponse reporter()
      Returns the value of the reporter record component.
      Returns:
      the value of the reporter record component
    • reported

      public SearchUserResponse reported()
      Returns the value of the reported record component.
      Returns:
      the value of the reported record component
    • description

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

      @NotNull public @NotNull BaseEntity.State state()
      Returns the value of the state record component.
      Returns:
      the value of the state record component
    • createdAt

      @NotNull public @NotNull LocalDateTime createdAt()
      Returns the value of the createdAt record component.
      Returns:
      the value of the createdAt record component
    • deletedAt

      public LocalDateTime deletedAt()
      Returns the value of the deletedAt record component.
      Returns:
      the value of the deletedAt record component