public PreAuthorization cancelPreAuthorization(String preAuthorizationId) { return fromJson( httpClient.put( format(ApiPath.PRE_AUTHORIZATION_CANCEL, preAuthorizationId), headers(), null), PreAuthorization.class); }
public Bill cancelBill(String billId) { return fromJson( httpClient.put(format(ApiPath.BILL_CANCEL, billId), headers(), null), Bill.class); }
public Subscription cancelSubscription(String subscriptionId) { return fromJson( httpClient.put(format(ApiPath.SUBSCRIPTION_CANCEL, subscriptionId), headers(), null), Subscription.class); }