@lexriver/yandex-pay
Version:
A TypeScript client for Yandex Pay API to integrate payment processing in your Node.js applications
20 lines (19 loc) • 1.12 kB
JavaScript
// https://pay.yandex.ru/docs/ru/custom/fns#agent-type
// признак агента по предмету расчета» (тег 1222)
export var EnumFnsAgentType;
(function (EnumFnsAgentType) {
/** Банковский платежный агент */
EnumFnsAgentType[EnumFnsAgentType["BankPaymentAgent"] = 1] = "BankPaymentAgent";
/** Банковский платежный субагент */
EnumFnsAgentType[EnumFnsAgentType["BankPaymentSubagent"] = 2] = "BankPaymentSubagent";
/** Платежный агент */
EnumFnsAgentType[EnumFnsAgentType["PaymentAgent"] = 3] = "PaymentAgent";
/** Платежный субагент */
EnumFnsAgentType[EnumFnsAgentType["PaymentSubagent"] = 4] = "PaymentSubagent";
/** Поверенный */
EnumFnsAgentType[EnumFnsAgentType["Trustee"] = 5] = "Trustee";
/** Комиссионер */
EnumFnsAgentType[EnumFnsAgentType["Commissioner"] = 6] = "Commissioner";
/** Иной агент */
EnumFnsAgentType[EnumFnsAgentType["OtherAgent"] = 7] = "OtherAgent";
})(EnumFnsAgentType || (EnumFnsAgentType = {}));