Files
yookassa-sdk-php/lib/Model/RequestorInterface.php
T
Антон Н. Николаев 3eebc00ef2 Обновленная версия SDK
2020-12-01 15:39:32 +03:00

30 lines
434 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();
}