Interface TypeServiceAsync
-
- All Implemented Interfaces:
public interface TypeServiceAsyncMatter-native legal workspaces and orchestration primitives
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceTypeServiceAsync.WithRawResponseA view of TypeServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract TypeServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract TypeServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<Void> create(TypeCreateParams params)
Create a matter type with plain-English operating instructions and seeded work.
-
create
abstract CompletableFuture<Void> create(TypeCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Void> retrieve(String id)
Get a single matter type.
-
retrieve
CompletableFuture<Void> retrieve(String id, TypeRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Void> retrieve(String id, TypeRetrieveParams params)
-
retrieve
abstract CompletableFuture<Void> retrieve(TypeRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Void> retrieve(TypeRetrieveParams params)
-
retrieve
CompletableFuture<Void> retrieve(String id, RequestOptions requestOptions)
-
update
CompletableFuture<Void> update(String id)
Update a matter type.
-
update
CompletableFuture<Void> update(String id, TypeUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<Void> update(String id, TypeUpdateParams params)
-
update
abstract CompletableFuture<Void> update(TypeUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<Void> update(TypeUpdateParams params)
-
update
CompletableFuture<Void> update(String id, RequestOptions requestOptions)
-
list
CompletableFuture<Void> list()
List matter types for the authenticated organization.
-
list
abstract CompletableFuture<Void> list(TypeListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<Void> list(TypeListParams params)
-
list
CompletableFuture<Void> list(RequestOptions requestOptions)
-
-
-
-