Package markets.alpaca.client.broker.sse
Record Class BrokerSseIdentifiedDateTimeOptions
java.lang.Object
java.lang.Record
markets.alpaca.client.broker.sse.BrokerSseIdentifiedDateTimeOptions
public record BrokerSseIdentifiedDateTimeOptions(OffsetDateTime since, OffsetDateTime until, String sinceId, String untilId, String id)
extends Record
Optional OffsetDateTime filters plus an event/account identifier.
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionBrokerSseIdentifiedDateTimeOptions(OffsetDateTime since, OffsetDateTime until, String sinceId, String untilId, String id) Creates an instance of aBrokerSseIdentifiedDateTimeOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()empty()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.since()Returns the value of thesincerecord component.sinceId()Returns the value of thesinceIdrecord component.final StringtoString()Returns a string representation of this record class.until()Returns the value of theuntilrecord component.untilId()Returns the value of theuntilIdrecord component.
-
Constructor Details
-
BrokerSseIdentifiedDateTimeOptions
public BrokerSseIdentifiedDateTimeOptions(OffsetDateTime since, OffsetDateTime until, String sinceId, String untilId, String id) Creates an instance of aBrokerSseIdentifiedDateTimeOptionsrecord class.- Parameters:
since- the value for thesincerecord componentuntil- the value for theuntilrecord componentsinceId- the value for thesinceIdrecord componentuntilId- the value for theuntilIdrecord componentid- the value for theidrecord component
-
-
Method Details
-
empty
-
builder
-
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). -
since
Returns the value of thesincerecord component.- Returns:
- the value of the
sincerecord component
-
until
Returns the value of theuntilrecord component.- Returns:
- the value of the
untilrecord component
-
sinceId
Returns the value of thesinceIdrecord component.- Returns:
- the value of the
sinceIdrecord component
-
untilId
Returns the value of theuntilIdrecord component.- Returns:
- the value of the
untilIdrecord component
-
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-