Record Class MailpitLinkCheckResponse
java.lang.Object
java.lang.Record
io.micronaut.email.mailpit.client.model.MailpitLinkCheckResponse
- Record Components:
errors- Number of errors.links- Checked links.
public record MailpitLinkCheckResponse(int errors, @Nullable List<MailpitLink> links)
extends Record
Mailpit link check response.
- Since:
- 3.1.0
-
Constructor Summary
ConstructorsConstructorDescriptionMailpitLinkCheckResponse(int errors, @Nullable List<MailpitLink> links) Creates an instance of aMailpitLinkCheckResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.interrors()Returns the value of theerrorsrecord component.final inthashCode()Returns a hash code value for this object.@Nullable List<MailpitLink> links()Returns the value of thelinksrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
errors
-
links
-