Record Class WorkspacesCheckpoints
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.WorkspacesCheckpoints
@Generated("copilot-sdk-codegen")
public record WorkspacesCheckpoints(Long number, String title, String filename)
extends Record
Schema for the `WorkspacesCheckpoints` type.
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionWorkspacesCheckpoints(Long number, String title, String filename) Creates an instance of aWorkspacesCheckpointsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.filename()Returns the value of thefilenamerecord component.final inthashCode()Returns a hash code value for this object.number()Returns the value of thenumberrecord component.title()Returns the value of thetitlerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
WorkspacesCheckpoints
Creates an instance of aWorkspacesCheckpointsrecord class.- Parameters:
number- the value for thenumberrecord componenttitle- the value for thetitlerecord componentfilename- the value for thefilenamerecord 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). -
number
Returns the value of thenumberrecord component.- Returns:
- the value of the
numberrecord component
-
title
Returns the value of thetitlerecord component.- Returns:
- the value of the
titlerecord component
-
filename
Returns the value of thefilenamerecord component.- Returns:
- the value of the
filenamerecord component
-