You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
<?php
|
|
|
|
// This class was generated on Wed, 01 Aug 2018 16:35:04 PDT by version 0.1.0-dev+0ee05a-dirty of Braintree SDK Generator
|
|
// AuthorizationsVoidRequest.php
|
|
// @version 0.1.0-dev+0ee05a-dirty
|
|
// @type request
|
|
// @data H4sIAAAAAAAC/2yS0YpTMRCG732KYa5jz7J4lTvZKruI7tGWBZFFpifTPdE0iZPJYix9dzltFVt7++XPMP/HbPEDbRgtUtUxif9F6lMss+fkHRqccxnE54mhxYfkXTGQBAaKA4digCL8+ckOMrUNRzWwanA3n8HnVKdoTArTwMtp0JEURiqwYo6wriE0GChrFXYzNPixsrSehDasLAXtl0eDt0yO5Zy+TbI5Zz3peMK2uGx56lxUfHxCgw8knlaBL7n4uhfxjtvx8T8ry5Ghp9ZTePnEkYWUHdzNYZ0EdOSLjdPex1TutQi1wz5XBj8xufsYGto1hcIT+FG9sEOrUtlgLymzqOeCNtYQdo+HDBc9DJnghEpOsfC/7CZF5XiMIeUc/LBv2H0rKaLBW9X8nnVMDi3294slHuShxe75ujsuX7rTU+m257p23fF6Ft99/tvkzc/Mg7JbKGktN8kx2uurV7sXvwEAAP//
|
|
// DO NOT EDIT
|
|
|
|
namespace PayPalCheckoutSdk\Payments;
|
|
|
|
use PayPalHttp\HttpRequest;
|
|
|
|
class AuthorizationsVoidRequest extends HttpRequest
|
|
{
|
|
function __construct($authorizationId)
|
|
{
|
|
parent::__construct("/v2/payments/authorizations/{authorization_id}/void?", "POST");
|
|
|
|
$this->path = str_replace("{authorization_id}", urlencode($authorizationId), $this->path);
|
|
$this->headers["Content-Type"] = "application/json";
|
|
}
|
|
|
|
|
|
}
|
|
|