Files
clouddesk/class/payment/yookassa/lib/Model/RequestorInterface.php
T

31 lines
435 B
PHP
Raw Normal View History

2024-02-08 12:07:49 -07:00
<?php
namespace YooKassa\Model;
interface RequestorInterface
{
/**
* Возвращает тип инициатора
* @return string
*/
public function getType();
/**
* @return string|null
*/
public function getAccountId();
/**
* @return string|null
*/
public function getClientId();
/**
* @return string|null
*/
public function getClientName();
}