Interface ProjectScoreService
-
- All Implemented Interfaces:
public interface ProjectScoreService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceProjectScoreService.WithRawResponseA view of ProjectScoreService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract ProjectScoreService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
ProjectScore create(ProjectScoreCreateParams params)
Create a new project_score. If there is an existing project_score in the project with the same name as the one specified in the request, will return the existing project_score unmodified
-
create
abstract ProjectScore create(ProjectScoreCreateParams params, RequestOptions requestOptions)
-
retrieve
ProjectScore retrieve(ProjectScoreRetrieveParams params)
Get a project_score object by its id
-
retrieve
abstract ProjectScore retrieve(ProjectScoreRetrieveParams params, RequestOptions requestOptions)
-
update
ProjectScore update(ProjectScoreUpdateParams params)
Partially update a project_score object. Specify the fields to update in the payload. Any object-type fields will be deep-merged with existing content. Currently we do not support removing fields or setting them to null.
-
update
abstract ProjectScore update(ProjectScoreUpdateParams params, RequestOptions requestOptions)
-
list
ProjectScoreListPage list()
List out all project_scores. The project_scores are sorted by creation date, with the most recently-created project_scores coming first
-
list
abstract ProjectScoreListPage list(ProjectScoreListParams params, RequestOptions requestOptions)
-
list
ProjectScoreListPage list(ProjectScoreListParams params)
-
list
ProjectScoreListPage list(RequestOptions requestOptions)
-
delete
ProjectScore delete(ProjectScoreDeleteParams params)
Delete a project_score object by its id
-
delete
abstract ProjectScore delete(ProjectScoreDeleteParams params, RequestOptions requestOptions)
-
replace
ProjectScore replace(ProjectScoreReplaceParams params)
Create or replace project_score. If there is an existing project_score in the project with the same name as the one specified in the request, will replace the existing project_score with the provided fields
-
replace
abstract ProjectScore replace(ProjectScoreReplaceParams params, RequestOptions requestOptions)
-
-
-
-