Record Class SubagentSettingsEntry
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.SubagentSettingsEntry
@Generated("copilot-sdk-codegen")
public record SubagentSettingsEntry(String model, String effortLevel, SubagentSettingsEntryContextTier contextTier)
extends Record
Subagent model, reasoning effort, and context tier settings
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionSubagentSettingsEntry(String model, String effortLevel, SubagentSettingsEntryContextTier contextTier) Creates an instance of aSubagentSettingsEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecontextTierrecord component.Returns the value of theeffortLevelrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.model()Returns the value of themodelrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SubagentSettingsEntry
public SubagentSettingsEntry(String model, String effortLevel, SubagentSettingsEntryContextTier contextTier) Creates an instance of aSubagentSettingsEntryrecord class.- Parameters:
model- the value for themodelrecord componenteffortLevel- the value for theeffortLevelrecord componentcontextTier- the value for thecontextTierrecord component
-
-
Method Details
-
toString
-
hashCode
-
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). -
model
Returns the value of themodelrecord component.- Returns:
- the value of the
modelrecord component
-
effortLevel
Returns the value of theeffortLevelrecord component.- Returns:
- the value of the
effortLevelrecord component
-
contextTier
Returns the value of thecontextTierrecord component.- Returns:
- the value of the
contextTierrecord component
-