Interface DirectoryService.WithRawResponse
-
- All Implemented Interfaces:
public interface DirectoryService.WithRawResponseA view of DirectoryService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract DirectoryService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
@MustBeClosed() HttpResponseFor<HrisDirectoryListPage> list()
Returns a raw HTTP response for
get /employer/directory, but is otherwise the same as DirectoryService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<HrisDirectoryListPage> list(HrisDirectoryListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<HrisDirectoryListPage> list(HrisDirectoryListParams params)
-
list
@MustBeClosed() HttpResponseFor<HrisDirectoryListPage> list(RequestOptions requestOptions)
-
listIndividuals
@Deprecated(message = "use `list` instead")@MustBeClosed() HttpResponseFor<HrisDirectoryListIndividualsPage> listIndividuals()
Returns a raw HTTP response for
get /employer/directory, but is otherwise the same as DirectoryService.listIndividuals.
-
listIndividuals
@Deprecated(message = "use `list` instead")@MustBeClosed() abstract HttpResponseFor<HrisDirectoryListIndividualsPage> listIndividuals(HrisDirectoryListIndividualsParams params, RequestOptions requestOptions)
-
listIndividuals
@Deprecated(message = "use `list` instead")@MustBeClosed() HttpResponseFor<HrisDirectoryListIndividualsPage> listIndividuals(HrisDirectoryListIndividualsParams params)
-
listIndividuals
@Deprecated(message = "use `list` instead")@MustBeClosed() HttpResponseFor<HrisDirectoryListIndividualsPage> listIndividuals(RequestOptions requestOptions)
-
-
-
-