Files
clouddesk/class/payment/yookassa/lib/Model/RequestorInterface.php
T
2024-02-08 12:07:49 -07:00

31 lines
435 B
PHP

<?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();
}