Interface DataRetentionService.WithRawResponse
-
- All Implemented Interfaces:
public interface DataRetentionService.WithRawResponseA view of DataRetentionService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract DataRetentionService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
@MustBeClosed() HttpResponseFor<OrganizationDataRetention> retrieve()
Returns a raw HTTP response for
get /organization/data_retention, but is otherwise the same as DataRetentionService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<OrganizationDataRetention> retrieve(DataRetentionRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<OrganizationDataRetention> retrieve(DataRetentionRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<OrganizationDataRetention> retrieve(RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<OrganizationDataRetention> update(DataRetentionUpdateParams params)
Returns a raw HTTP response for
post /organization/data_retention, but is otherwise the same as DataRetentionService.update.
-
update
@MustBeClosed() abstract HttpResponseFor<OrganizationDataRetention> update(DataRetentionUpdateParams params, RequestOptions requestOptions)
-
-
-
-