1
0
зеркало из https://github.com/glebtv/yookassa.git synced 2026-09-07 19:35:51 +03:00
Этот коммит содержится в:
Ivan Shamatov
2021-10-31 23:38:12 +03:00
родитель 27cff37930
Коммит 67220ed566

Просмотреть файл

@@ -21,7 +21,7 @@ module Yookassa
end end
class BankCard < Base class BankCard < Base
attribute :type, Types.Value('bank_card') attribute :type, Types.Value("bank_card")
# login [string, optional] # login [string, optional]
# User's login in Alfa-Click (linked phone number or the additional login). # User's login in Alfa-Click (linked phone number or the additional login).
@@ -29,7 +29,7 @@ module Yookassa
end end
class Alfabank < Base class Alfabank < Base
attribute :type, Types.Value('alfabank') attribute :type, Types.Value("alfabank")
# login [string, optional] # login [string, optional]
# User's login in Alfa-Click (linked phone number or the additional login). # User's login in Alfa-Click (linked phone number or the additional login).
@@ -37,7 +37,7 @@ module Yookassa
end end
class YooMoney < Base class YooMoney < Base
attribute :type, Types.Value('yoo_money') attribute :type, Types.Value("yoo_money")
# account_number [string, optional] # account_number [string, optional]
# The number of the YooMoney wallet used for making the payment. # The number of the YooMoney wallet used for making the payment.
@@ -45,7 +45,7 @@ module Yookassa
end end
class Sberbank < Base class Sberbank < Base
attribute :type, Types.Value('sberbank') attribute :type, Types.Value("sberbank")
# phone [string, optional] # phone [string, optional]
# TThe phone number specified during the registration process of the SberBank Online/SberPay account, # TThe phone number specified during the registration process of the SberBank Online/SberPay account,
@@ -54,39 +54,39 @@ module Yookassa
end end
class ApplePay < Base class ApplePay < Base
attribute :type, Types.Value('apple_pay') attribute :type, Types.Value("apple_pay")
end end
class Cash < Base class Cash < Base
attribute :type, Types.Value('cash') attribute :type, Types.Value("cash")
end end
class DirectCarrierBilling < Base class DirectCarrierBilling < Base
attribute :type, Types.Value('mobile_balance') attribute :type, Types.Value("mobile_balance")
end end
class GooglePay < Base class GooglePay < Base
attribute :type, Types.Value('google_pay') attribute :type, Types.Value("google_pay")
end end
class Installments < Base class Installments < Base
attribute :type, Types.Value('installments') attribute :type, Types.Value("installments")
end end
class Qiwi < Base class Qiwi < Base
attribute :type, Types.Value('qiwi') attribute :type, Types.Value("qiwi")
end end
class Tinkoff < Base class Tinkoff < Base
attribute :type, Types.Value('tinkoff_bank') attribute :type, Types.Value("tinkoff_bank")
end end
class Wechat < Base class Wechat < Base
attribute :type, Types.Value('wechat') attribute :type, Types.Value("wechat")
end end
class Webmoney < Base class Webmoney < Base
attribute :type, Types.Value('webmoney') attribute :type, Types.Value("webmoney")
end end
end end