Package com.whatsapp.api.domain.webhook
Record Class Document
java.lang.Object
java.lang.Record
com.whatsapp.api.domain.webhook.Document
- Record Components:
filename
- Name for the file on the sender's devicemimeType
- Mime type of the document filesha256
- Hashid
- ID for the document- Caption for the document, if provided
public record Document(String filename, String mimeType, String sha256, String id, String caption)
extends Record
When messages type is set to document, this object is included in the messages object.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncaption()
Returns the value of thecaption
record component.final boolean
Indicates whether some other object is "equal to" this one.filename()
Returns the value of thefilename
record component.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.mimeType()
Returns the value of themimeType
record component.sha256()
Returns the value of thesha256
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Document
Creates an instance of aDocument
record class.
-
-
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)
. -
filename
Returns the value of thefilename
record component.- Returns:
- the value of the
filename
record component
-
mimeType
Returns the value of themimeType
record component.- Returns:
- the value of the
mimeType
record component
-
sha256
Returns the value of thesha256
record component.- Returns:
- the value of the
sha256
record component
-
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-