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 ChatMessageKeyThe field for thekeyrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aCancelPaymentRequestMessagerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.key()Returns the value of thekeyrecord component.final StringtoString()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, waitMethods inherited from interface it.auties.whatsapp.model.message.model.PaymentMessage
category
-
Field Details
-
key
The field for thekeyrecord component.
-
-
Constructor Details
-
CancelPaymentRequestMessage
Creates an instance of aCancelPaymentRequestMessagerecord class.- Parameters:
key- the value for thekeyrecord component
-
-
Method Details
-
type
Description copied from interface:MessageReturn 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 thekeyrecord component.- Returns:
- the value of the
keyrecord component
-