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(String physicalCardId, PhysicalCardCreateParams params)
Returns a raw HTTP response for
post /simulations/physical_cards/{physical_card_id}/tracking_updates, but is otherwise the same as PhysicalCardService.create.
-
create
@MustBeClosed() HttpResponseFor<PhysicalCard> create(String physicalCardId, PhysicalCardCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<PhysicalCard> create(PhysicalCardCreateParams params)
-
create
@MustBeClosed() abstract HttpResponseFor<PhysicalCard> create(PhysicalCardCreateParams params, RequestOptions requestOptions)
-
advanceShipment
@MustBeClosed() HttpResponseFor<PhysicalCard> advanceShipment(String physicalCardId, PhysicalCardAdvanceShipmentParams params)
Returns a raw HTTP response for
post /simulations/physical_cards/{physical_card_id}/advance_shipment, but is otherwise the same as PhysicalCardService.advanceShipment.
-
advanceShipment
@MustBeClosed() HttpResponseFor<PhysicalCard> advanceShipment(String physicalCardId, PhysicalCardAdvanceShipmentParams params, RequestOptions requestOptions)
-
advanceShipment
@MustBeClosed() HttpResponseFor<PhysicalCard> advanceShipment(PhysicalCardAdvanceShipmentParams params)
-
advanceShipment
@MustBeClosed() abstract HttpResponseFor<PhysicalCard> advanceShipment(PhysicalCardAdvanceShipmentParams params, RequestOptions requestOptions)
-
-
-
-