Sha256: 9a61e0ee497fc710832429191f213db4b4fa18cbf2e1843e96b71f0dc995b2f0
Contents?: true
Size: 808 Bytes
Versions: 3
Compression:
Stored size: 808 Bytes
Contents
require_relative '../common/jsonifier' module MangoModel # The Pay-In Web Extended View is an object which provides # more details about the card used to process a Web Pay-In class PayInWebExtendedView include MangoPay::Jsonifier # [String] The item's ID attr_accessor :id # [PayInPaymentType] The type of pay-in attr_accessor :payment_type # [Integer] Time when the transaction happened (UNIX timestamp) attr_accessor :execution_date # [String] The expiry date of the card (MMYY format) attr_accessor :expiration_date # [String] A partially obfuscated version of the credit card number attr_accessor :alias # [CardType] The type of card attr_accessor :card_type # [CountryIso] Country of the address attr_accessor :country end end
Version data entries
3 entries across 3 versions & 1 rubygems