Обновленная версия SDK

This commit is contained in:
Антон Н. Николаев
2020-12-01 15:39:32 +03:00
commit 3eebc00ef2
365 changed files with 50275 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<?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();
}