Record Class SessionDebugCollectLogsResult
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.SessionDebugCollectLogsResult
@CopilotExperimental
@Generated("copilot-sdk-codegen")
public record SessionDebugCollectLogsResult(DebugCollectLogsResultKind kind, String path, List<DebugCollectLogsCollectedEntry> entries, List<DebugCollectLogsSkippedEntry> skippedEntries)
extends Record
Result of collecting a redacted debug bundle.
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionSessionDebugCollectLogsResult(DebugCollectLogsResultKind kind, String path, List<DebugCollectLogsCollectedEntry> entries, List<DebugCollectLogsSkippedEntry> skippedEntries) Creates an instance of aSessionDebugCollectLogsResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionentries()Returns the value of theentriesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.kind()Returns the value of thekindrecord component.path()Returns the value of thepathrecord component.Returns the value of theskippedEntriesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SessionDebugCollectLogsResult
public SessionDebugCollectLogsResult(DebugCollectLogsResultKind kind, String path, List<DebugCollectLogsCollectedEntry> entries, List<DebugCollectLogsSkippedEntry> skippedEntries) Creates an instance of aSessionDebugCollectLogsResultrecord class.- Parameters:
kind- the value for thekindrecord componentpath- the value for thepathrecord componententries- the value for theentriesrecord componentskippedEntries- the value for theskippedEntriesrecord 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). -
kind
Returns the value of thekindrecord component.- Returns:
- the value of the
kindrecord component
-
path
Returns the value of thepathrecord component.- Returns:
- the value of the
pathrecord component
-
entries
Returns the value of theentriesrecord component.- Returns:
- the value of the
entriesrecord component
-
skippedEntries
Returns the value of theskippedEntriesrecord component.- Returns:
- the value of the
skippedEntriesrecord component
-