mirror of
https://github.com/anthonyaxenov/atol-online.git
synced 2024-11-25 02:24:11 +00:00
Новый енам AgentTypes
This commit is contained in:
parent
9d3344a0df
commit
b5a01debd2
67
src/Enums/AgentTypes.php
Normal file
67
src/Enums/AgentTypes.php
Normal file
@ -0,0 +1,67 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright (c) 2020-2021 Антон Аксенов (Anthony Axenov)
|
||||
*
|
||||
* This code is licensed under MIT.
|
||||
* Этот код распространяется по лицензии MIT.
|
||||
* https://github.com/anthonyaxenov/atol-online/blob/master/LICENSE
|
||||
*/
|
||||
|
||||
declare(strict_types = 1);
|
||||
|
||||
namespace AtolOnline\Enums;
|
||||
|
||||
use AtolOnline\Enum;
|
||||
|
||||
/**
|
||||
* Константы, определяющие типы агента
|
||||
*
|
||||
* Тег ФФД - 1057
|
||||
*
|
||||
* @see https://online.atol.ru/files/API_atol_online_v4.pdf Документация, стр 18 (agent_info)
|
||||
*/
|
||||
final class AgentTypes extends Enum
|
||||
{
|
||||
/**
|
||||
* Банковский платежный агент
|
||||
*/
|
||||
const BANK_PAYING_AGENT = 'bank_paying_agent';
|
||||
|
||||
/**
|
||||
* Банковский платежный субагент
|
||||
*/
|
||||
const BANK_PAYING_SUBAGENT = 'bank_paying_subagent';
|
||||
|
||||
/**
|
||||
* Платежный агент
|
||||
*/
|
||||
const PAYING_AGENT = 'paying_agent';
|
||||
|
||||
/**
|
||||
* Платежный субагент
|
||||
*/
|
||||
const PAYING_SUBAGENT = 'paying_subagent';
|
||||
|
||||
/**
|
||||
* Поверенный
|
||||
*/
|
||||
const ATTRONEY = 'attorney';
|
||||
|
||||
/**
|
||||
* Комиссионер
|
||||
*/
|
||||
const COMMISSION_AGENT = 'commission_agent';
|
||||
|
||||
/**
|
||||
* Другой тип агента
|
||||
*/
|
||||
const ANOTHER = 'another';
|
||||
|
||||
/**
|
||||
* @return int[] Возвращает массив тегов ФФД
|
||||
*/
|
||||
public static function getFfdTags(): array
|
||||
{
|
||||
return [1057];
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user