Interface PhysicalCardProfileService.WithRawResponse
-
- All Implemented Interfaces:
public interface PhysicalCardProfileService.WithRawResponseA view of PhysicalCardProfileService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract PhysicalCardProfileService.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<PhysicalCardProfile> create(PhysicalCardProfileCreateParams params)
Returns a raw HTTP response for
post /physical_card_profiles, but is otherwise the same as PhysicalCardProfileService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<PhysicalCardProfile> create(PhysicalCardProfileCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> retrieve(String physicalCardProfileId)
Returns a raw HTTP response for
get /physical_card_profiles/{physical_card_profile_id}, but is otherwise the same as PhysicalCardProfileService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> retrieve(String physicalCardProfileId, PhysicalCardProfileRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> retrieve(String physicalCardProfileId, PhysicalCardProfileRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<PhysicalCardProfile> retrieve(PhysicalCardProfileRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> retrieve(PhysicalCardProfileRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> retrieve(String physicalCardProfileId, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<PhysicalCardProfileListPage> list()
Returns a raw HTTP response for
get /physical_card_profiles, but is otherwise the same as PhysicalCardProfileService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<PhysicalCardProfileListPage> list(PhysicalCardProfileListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<PhysicalCardProfileListPage> list(PhysicalCardProfileListParams params)
-
list
@MustBeClosed() HttpResponseFor<PhysicalCardProfileListPage> list(RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> archive(String physicalCardProfileId)
Returns a raw HTTP response for
post /physical_card_profiles/{physical_card_profile_id}/archive, but is otherwise the same as PhysicalCardProfileService.archive.
-
archive
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> archive(String physicalCardProfileId, PhysicalCardProfileArchiveParams params, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> archive(String physicalCardProfileId, PhysicalCardProfileArchiveParams params)
-
archive
@MustBeClosed() abstract HttpResponseFor<PhysicalCardProfile> archive(PhysicalCardProfileArchiveParams params, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> archive(PhysicalCardProfileArchiveParams params)
-
archive
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> archive(String physicalCardProfileId, RequestOptions requestOptions)
-
clone
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> clone(String physicalCardProfileId)
Returns a raw HTTP response for
post /physical_card_profiles/{physical_card_profile_id}/clone, but is otherwise the same as PhysicalCardProfileService.clone.
-
clone
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> clone(String physicalCardProfileId, PhysicalCardProfileCloneParams params, RequestOptions requestOptions)
-
clone
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> clone(String physicalCardProfileId, PhysicalCardProfileCloneParams params)
-
clone
@MustBeClosed() abstract HttpResponseFor<PhysicalCardProfile> clone(PhysicalCardProfileCloneParams params, RequestOptions requestOptions)
-
clone
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> clone(PhysicalCardProfileCloneParams params)
-
clone
@MustBeClosed() HttpResponseFor<PhysicalCardProfile> clone(String physicalCardProfileId, RequestOptions requestOptions)
-
-
-
-