Package com.whatsapp.api.domain.webhook
Record Class Image
java.lang.Object
java.lang.Record
com.whatsapp.api.domain.webhook.Image
- Record Components:
sha256- The checksum of the media.mimeType- The mime type of the media.caption- Added to Webhooks if it has been previously specified. The caption that describes the media.id- The ID of the medi
The type Image.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncaption()Returns the value of thecaptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.mimeType()Returns the value of themimeTyperecord component.sha256()Returns the value of thesha256record component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
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). -
sha256
Returns the value of thesha256record component.- Returns:
- the value of the
sha256record component
-
mimeType
Returns the value of themimeTyperecord component.- Returns:
- the value of the
mimeTyperecord component
-
caption
Returns the value of thecaptionrecord component.- Returns:
- the value of the
captionrecord component
-
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-