Module it.auties.cobalt
Record Class CancelPaymentRequestMessage
java.lang.Object
java.lang.Record
it.auties.whatsapp.model.message.payment.CancelPaymentRequestMessage
- All Implemented Interfaces:
it.auties.protobuf.model.ProtobufMessage
,it.auties.protobuf.model.ProtobufObject
,Message
,PaymentMessage
public record CancelPaymentRequestMessage(ChatMessageKey key)
extends Record
implements PaymentMessage
A model class that represents a message that cancels a
RequestPaymentMessage
.-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ChatMessageKey
The field for thekey
record component. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aCancelPaymentRequestMessage
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.key()
Returns the value of thekey
record component.final String
toString()
Returns a string representation of this record class.type()
Return message typeMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface it.auties.whatsapp.model.message.model.PaymentMessage
category
-
Field Details
-
key
The field for thekey
record component.
-
-
Constructor Details
-
CancelPaymentRequestMessage
Creates an instance of aCancelPaymentRequestMessage
record class.- Parameters:
key
- the value for thekey
record component
-
-
Method Details
-
type
Description copied from interface:Message
Return message type -
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)
. -
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-