src/Response/SubscriptionDeleteResponse.php
<?php
namespace Cloudmazing\Tikkie\Response;
/**
* Class SubscriptionDeleteResponse.
*
* @category Response
*
* @author Job Wiegant <job@cloudmazing.nl>
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
class SubscriptionDeleteResponse extends BaseResponse
{
/**
* A unique identifier for the request.
*
* @var string
*/
protected string $traceId;
/**
* Get the trace id.
*
* @return string
*/
public function getTraceId(): string
{
return $this->traceId;
}
}