Interface SpanIframeService.WithRawResponse
-
- All Implemented Interfaces:
public interface SpanIframeService.WithRawResponseA view of SpanIframeService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() HttpResponseFor<SpanIFrame> create(SpanIframeCreateParams params)
Returns a raw HTTP response for
post /v1/span_iframe, but is otherwise the same as SpanIframeService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<SpanIFrame> create(SpanIframeCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<SpanIFrame> retrieve(SpanIframeRetrieveParams params)
Returns a raw HTTP response for
get /v1/span_iframe/{span_iframe_id}, but is otherwise the same as SpanIframeService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<SpanIFrame> retrieve(SpanIframeRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<SpanIFrame> update(SpanIframeUpdateParams params)
Returns a raw HTTP response for
patch /v1/span_iframe/{span_iframe_id}, but is otherwise the same as SpanIframeService.update.
-
update
@MustBeClosed() abstract HttpResponseFor<SpanIFrame> update(SpanIframeUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<SpanIframeListPage> list()
Returns a raw HTTP response for
get /v1/span_iframe, but is otherwise the same as SpanIframeService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<SpanIframeListPage> list(SpanIframeListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<SpanIframeListPage> list(SpanIframeListParams params)
-
list
@MustBeClosed() HttpResponseFor<SpanIframeListPage> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<SpanIFrame> delete(SpanIframeDeleteParams params)
Returns a raw HTTP response for
delete /v1/span_iframe/{span_iframe_id}, but is otherwise the same as SpanIframeService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<SpanIFrame> delete(SpanIframeDeleteParams params, RequestOptions requestOptions)
-
replace
@MustBeClosed() HttpResponseFor<SpanIFrame> replace(SpanIframeReplaceParams params)
Returns a raw HTTP response for
put /v1/span_iframe, but is otherwise the same as SpanIframeService.replace.
-
replace
@MustBeClosed() abstract HttpResponseFor<SpanIFrame> replace(SpanIframeReplaceParams params, RequestOptions requestOptions)
-
-
-
-