mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-23 07:50:34 +00:00
30 lines
434 B
PHP
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();
|
|
} |