Interface ProjectScoreServiceAsync
-
- All Implemented Interfaces:
public interface ProjectScoreServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceProjectScoreServiceAsync.WithRawResponseA view of ProjectScoreServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract ProjectScoreServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
CompletableFuture<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 CompletableFuture<ProjectScore> create(ProjectScoreCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<ProjectScore> retrieve(ProjectScoreRetrieveParams params)
Get a project_score object by its id
-
retrieve
abstract CompletableFuture<ProjectScore> retrieve(ProjectScoreRetrieveParams params, RequestOptions requestOptions)
-
update
CompletableFuture<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 CompletableFuture<ProjectScore> update(ProjectScoreUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<ProjectScoreListPageAsync> 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 CompletableFuture<ProjectScoreListPageAsync> list(ProjectScoreListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<ProjectScoreListPageAsync> list(ProjectScoreListParams params)
-
list
CompletableFuture<ProjectScoreListPageAsync> list(RequestOptions requestOptions)
-
delete
CompletableFuture<ProjectScore> delete(ProjectScoreDeleteParams params)
Delete a project_score object by its id
-
delete
abstract CompletableFuture<ProjectScore> delete(ProjectScoreDeleteParams params, RequestOptions requestOptions)
-
replace
CompletableFuture<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 CompletableFuture<ProjectScore> replace(ProjectScoreReplaceParams params, RequestOptions requestOptions)
-
-
-
-