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
Modifier and Type Method Description abstract HttpResponseFor<PhysicalCard>create(PhysicalCardCreateParams params, RequestOptions requestOptions)Returns a raw HTTP response for post /physical_cards, but is otherwise the same as PhysicalCardService.create.abstract HttpResponseFor<PhysicalCard>create(PhysicalCardCreateParams params)Returns a raw HTTP response for post /physical_cards, but is otherwise the same as PhysicalCardService.create.abstract HttpResponseFor<PhysicalCard>retrieve(PhysicalCardRetrieveParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.retrieve.abstract HttpResponseFor<PhysicalCard>retrieve(PhysicalCardRetrieveParams params)Returns a raw HTTP response for get /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.retrieve.abstract HttpResponseFor<PhysicalCard>update(PhysicalCardUpdateParams params, RequestOptions requestOptions)Returns a raw HTTP response for patch /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.update.abstract HttpResponseFor<PhysicalCard>update(PhysicalCardUpdateParams params)Returns a raw HTTP response for patch /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.update.abstract HttpResponseFor<PhysicalCardListPage>list(PhysicalCardListParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /physical_cards, but is otherwise the same as PhysicalCardService.list.abstract HttpResponseFor<PhysicalCardListPage>list(PhysicalCardListParams params)Returns a raw HTTP response for get /physical_cards, but is otherwise the same as PhysicalCardService.list.abstract HttpResponseFor<PhysicalCardListPage>list()Returns a raw HTTP response for get /physical_cards, but is otherwise the same as PhysicalCardService.list.HttpResponseFor<PhysicalCardListPage>list(RequestOptions requestOptions)Returns a raw HTTP response for get /physical_cards, but is otherwise the same as PhysicalCardService.list.-
-
Method Detail
-
create
abstract HttpResponseFor<PhysicalCard> create(PhysicalCardCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /physical_cards, but is otherwise the same as PhysicalCardService.create.
-
create
abstract HttpResponseFor<PhysicalCard> create(PhysicalCardCreateParams params)
Returns a raw HTTP response for
post /physical_cards, but is otherwise the same as PhysicalCardService.create.
-
retrieve
abstract HttpResponseFor<PhysicalCard> retrieve(PhysicalCardRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.retrieve.
-
retrieve
abstract HttpResponseFor<PhysicalCard> retrieve(PhysicalCardRetrieveParams params)
Returns a raw HTTP response for
get /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.retrieve.
-
update
abstract HttpResponseFor<PhysicalCard> update(PhysicalCardUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
patch /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.update.
-
update
abstract HttpResponseFor<PhysicalCard> update(PhysicalCardUpdateParams params)
Returns a raw HTTP response for
patch /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardService.update.
-
list
abstract HttpResponseFor<PhysicalCardListPage> list(PhysicalCardListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /physical_cards, but is otherwise the same as PhysicalCardService.list.
-
list
abstract HttpResponseFor<PhysicalCardListPage> list(PhysicalCardListParams params)
Returns a raw HTTP response for
get /physical_cards, but is otherwise the same as PhysicalCardService.list.
-
list
abstract HttpResponseFor<PhysicalCardListPage> list()
Returns a raw HTTP response for
get /physical_cards, but is otherwise the same as PhysicalCardService.list.
-
list
HttpResponseFor<PhysicalCardListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /physical_cards, but is otherwise the same as PhysicalCardService.list.
-
-
-
-