Record Class MeetingResponse
java.lang.Object
java.lang.Record
inha.dayoook_e.lesson.api.controller.dto.response.MeetingResponse
-
Constructor Summary
ConstructorsConstructorDescriptionMeetingResponse(String meeting_uri, String created_at, String status, String event_id) Creates an instance of aMeetingResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecreated_atrecord component.final booleanIndicates whether some other object is "equal to" this one.event_id()Returns the value of theevent_idrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of themeeting_urirecord component.status()Returns the value of thestatusrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MeetingResponse
Creates an instance of aMeetingResponserecord class.- Parameters:
meeting_uri- the value for themeeting_urirecord componentcreated_at- the value for thecreated_atrecord componentstatus- the value for thestatusrecord componentevent_id- the value for theevent_idrecord component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object). -
meeting_uri
Returns the value of themeeting_urirecord component.- Returns:
- the value of the
meeting_urirecord component
-
created_at
Returns the value of thecreated_atrecord component.- Returns:
- the value of the
created_atrecord component
-
status
Returns the value of thestatusrecord component.- Returns:
- the value of the
statusrecord component
-
event_id
Returns the value of theevent_idrecord component.- Returns:
- the value of the
event_idrecord component
-