kodekeep/paddle-sdk

View on GitHub
src/Api/Endpoints/Subscription/OneOffCharges.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/*
 * This file is part of Paddle SDK.
 *
 * (c) KodeKeep <hello@kodekeep.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace KodeKeep\Paddle\Api\Endpoints\Subscription;

use KodeKeep\Paddle\Api\Endpoints\Endpoint;

class OneOffCharges extends Endpoint
{
    /**
     * @see https://developer.paddle.com/api-reference/subscription-api/one-off-charges/createcharge
     */
    public function create(int $subscriptionId, array $data = []): array
    {
        return $this->post("/2.0/subscription/{$subscriptionId}/charge", $data);
    }
}