Record Class DashScopeApiSpec.TokenInfo
java.lang.Object
java.lang.Record
com.alibaba.cloud.ai.dashscope.spec.DashScopeApiSpec.TokenInfo
- Enclosing class:
- DashScopeApiSpec
public static record DashScopeApiSpec.TokenInfo(String token, byte[] bytes, Float logprob, List<DashScopeApiSpec.TopLogprobs> topLogprobs)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionTokenInfo(String token, byte[] bytes, Float logprob, List<DashScopeApiSpec.TopLogprobs> topLogprobs) Creates an instance of aTokenInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionbyte[]bytes()Returns the value of thebytesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.logprob()Returns the value of thelogprobrecord component.token()Returns the value of thetokenrecord component.Returns the value of thetopLogprobsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
TokenInfo
public TokenInfo(String token, byte[] bytes, Float logprob, List<DashScopeApiSpec.TopLogprobs> topLogprobs) Creates an instance of aTokenInforecord class.- Parameters:
token- the value for thetokenrecord componentbytes- the value for thebytesrecord componentlogprob- the value for thelogprobrecord componenttopLogprobs- the value for thetopLogprobsrecord 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). -
token
Returns the value of thetokenrecord component.- Returns:
- the value of the
tokenrecord component
-
bytes
public byte[] bytes()Returns the value of thebytesrecord component.- Returns:
- the value of the
bytesrecord component
-
logprob
Returns the value of thelogprobrecord component.- Returns:
- the value of the
logprobrecord component
-
topLogprobs
Returns the value of thetopLogprobsrecord component.- Returns:
- the value of the
topLogprobsrecord component
-