Package dev.tobee.telegram.request.body
Record Class GetUpdateBody
java.lang.Object
java.lang.Record
dev.tobee.telegram.request.body.GetUpdateBody
public record GetUpdateBody(OptionalLong offset, OptionalInt limit, OptionalInt timeout, List<UpdateTypes> allowedUpdates)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionGetUpdateBody(OptionalLong offset, OptionalInt limit, OptionalInt timeout, List<UpdateTypes> allowedUpdates) Creates an instance of aGetUpdateBodyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theallowedUpdatesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.limit()Returns the value of thelimitrecord component.offset()Returns the value of theoffsetrecord component.timeout()Returns the value of thetimeoutrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
GetUpdateBody
public GetUpdateBody(OptionalLong offset, OptionalInt limit, OptionalInt timeout, List<UpdateTypes> allowedUpdates) Creates an instance of aGetUpdateBodyrecord class.- Parameters:
offset- the value for theoffsetrecord componentlimit- the value for thelimitrecord componenttimeout- the value for thetimeoutrecord componentallowedUpdates- the value for theallowedUpdatesrecord component
-
-
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). -
offset
Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
limit
Returns the value of thelimitrecord component.- Returns:
- the value of the
limitrecord component
-
timeout
Returns the value of thetimeoutrecord component.- Returns:
- the value of the
timeoutrecord component
-
allowedUpdates
Returns the value of theallowedUpdatesrecord component.- Returns:
- the value of the
allowedUpdatesrecord component
-