Interface PhysicalCardService.WithRawResponse
-
- All Implemented Interfaces:
public interface PhysicalCardService.WithRawResponseA view of PhysicalCardService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract PhysicalCardService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
@MustBeClosed() HttpResponseFor<PhysicalCard> create(PhysicalCardCreateParams params)
Returns a raw HTTP response for
post /physical_cards, but is otherwise the same as PhysicalCardService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<PhysicalCard> create(PhysicalCardCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCard> retrieve(String physicalCardId)
Returns a raw HTTP response for
get /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCard> retrieve(String physicalCardId, PhysicalCardRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCard> retrieve(String physicalCardId, PhysicalCardRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<PhysicalCard> retrieve(PhysicalCardRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCard> retrieve(PhysicalCardRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCard> retrieve(String physicalCardId, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<PhysicalCard> update(String physicalCardId, PhysicalCardUpdateParams params)
Returns a raw HTTP response for
patch /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.update.
-
update
@MustBeClosed() HttpResponseFor<PhysicalCard> update(String physicalCardId, PhysicalCardUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<PhysicalCard> update(PhysicalCardUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<PhysicalCard> update(PhysicalCardUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<PhysicalCardListPage> list()
Returns a raw HTTP response for
get /physical_cards, but is otherwise the same as PhysicalCardService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<PhysicalCardListPage> list(PhysicalCardListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<PhysicalCardListPage> list(PhysicalCardListParams params)
-
list
@MustBeClosed() HttpResponseFor<PhysicalCardListPage> list(RequestOptions requestOptions)
-
-
-
-