Record Class SkillsDiscoverParams
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.SkillsDiscoverParams
@CopilotExperimental
@Generated("copilot-sdk-codegen")
public record SkillsDiscoverParams(List<String> projectPaths, List<String> skillDirectories, Boolean excludeHostSkills)
extends Record
Optional project paths and additional skill directories to include in discovery.
- Since:
- 1.0.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexcludeHostSkillsrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of theprojectPathsrecord component.Returns the value of theskillDirectoriesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SkillsDiscoverParams
public SkillsDiscoverParams(List<String> projectPaths, List<String> skillDirectories, Boolean excludeHostSkills) Creates an instance of aSkillsDiscoverParamsrecord class.- Parameters:
projectPaths- the value for theprojectPathsrecord componentskillDirectories- the value for theskillDirectoriesrecord componentexcludeHostSkills- the value for theexcludeHostSkillsrecord 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). -
projectPaths
-
skillDirectories
-
excludeHostSkills
Returns the value of theexcludeHostSkillsrecord component.- Returns:
- the value of the
excludeHostSkillsrecord component
-