jwiegant/laravel-tikkie

View on GitHub
src/Response/SubscriptionResponse.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Cloudmazing\Tikkie\Response;

/**
 * Class SubscriptionResponse.
 *
 * @category Response
 *
 * @author   Job Wiegant <job@cloudmazing.nl>
 * @license  http://www.opensource.org/licenses/mit-license.html  MIT License
 */
class SubscriptionResponse extends BaseResponse
{
    /**
     * Unique identifier for a subscription. This will be sent with the user's
     * payment request notification.
     *
     * @var string
     */
    protected string $subscriptionId;

    /**
     * Get the subscription id.
     *
     * @return string
     */
    public function getSubscriptionId(): string
    {
        return $this->subscriptionId;
    }
}