Interface EntityServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface EntityServiceAsync.WithRawResponseA view of EntityServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> create(EntityCreateParams params)
Returns a raw HTTP response for
post /entities, but is otherwise the same as EntityServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> create(EntityCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> retrieve(EntityRetrieveParams params)
Returns a raw HTTP response for
get /entities/{entity_id}, but is otherwise the same as EntityServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> retrieve(EntityRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<EntityListPageAsync>> list()
Returns a raw HTTP response for
get /entities, but is otherwise the same as EntityServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<EntityListPageAsync>> list(EntityListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<EntityListPageAsync>> list(EntityListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<EntityListPageAsync>> list(RequestOptions requestOptions)
-
archive
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> archive(EntityArchiveParams params)
Returns a raw HTTP response for
post /entities/{entity_id}/archive, but is otherwise the same as EntityServiceAsync.archive.
-
archive
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> archive(EntityArchiveParams params, RequestOptions requestOptions)
-
archiveBeneficialOwner
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> archiveBeneficialOwner(EntityArchiveBeneficialOwnerParams params)
Returns a raw HTTP response for
post /entities/{entity_id}/archive_beneficial_owner, but is otherwise the same as EntityServiceAsync.archiveBeneficialOwner.
-
archiveBeneficialOwner
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> archiveBeneficialOwner(EntityArchiveBeneficialOwnerParams params, RequestOptions requestOptions)
-
confirm
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> confirm(EntityConfirmParams params)
Returns a raw HTTP response for
post /entities/{entity_id}/confirm, but is otherwise the same as EntityServiceAsync.confirm.
-
confirm
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> confirm(EntityConfirmParams params, RequestOptions requestOptions)
-
createBeneficialOwner
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> createBeneficialOwner(EntityCreateBeneficialOwnerParams params)
Returns a raw HTTP response for
post /entities/{entity_id}/create_beneficial_owner, but is otherwise the same as EntityServiceAsync.createBeneficialOwner.
-
createBeneficialOwner
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> createBeneficialOwner(EntityCreateBeneficialOwnerParams params, RequestOptions requestOptions)
-
updateAddress
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> updateAddress(EntityUpdateAddressParams params)
Returns a raw HTTP response for
post /entities/{entity_id}/update_address, but is otherwise the same as EntityServiceAsync.updateAddress.
-
updateAddress
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> updateAddress(EntityUpdateAddressParams params, RequestOptions requestOptions)
-
updateBeneficialOwnerAddress
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> updateBeneficialOwnerAddress(EntityUpdateBeneficialOwnerAddressParams params)
Returns a raw HTTP response for
post /entities/{entity_id}/update_beneficial_owner_address, but is otherwise the same as EntityServiceAsync.updateBeneficialOwnerAddress.
-
updateBeneficialOwnerAddress
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> updateBeneficialOwnerAddress(EntityUpdateBeneficialOwnerAddressParams params, RequestOptions requestOptions)
-
updateIndustryCode
@MustBeClosed() CompletableFuture<HttpResponseFor<Entity>> updateIndustryCode(EntityUpdateIndustryCodeParams params)
Returns a raw HTTP response for
post /entities/{entity_id}/update_industry_code, but is otherwise the same as EntityServiceAsync.updateIndustryCode.
-
updateIndustryCode
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Entity>> updateIndustryCode(EntityUpdateIndustryCodeParams params, RequestOptions requestOptions)
-
-
-
-