class Cards::Card

noinspection ALL

Attributes

brand[R]
deleted[R]
exp_month[R]
exp_year[R]
expired[R]
fingerprint[R]
isin[R]
issuer[R]
name[R]
nickname[R]
number[R]
reference[R]
token[R]
type[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/Cards.rb, line 10
def initialize(options = {})
  @name = get_arg(options, 'name_on_card')
  @exp_year = get_arg(options, 'card_exp_year')
  @reference = get_arg(options, 'card_reference')
  @exp_month = get_arg(options, 'card_exp_month')
  @expired = get_arg(options, 'expired')
  @fingerprint = get_arg(options, 'card_fingerprint')
  @isin = get_arg(options, 'card_isin')
  @type = get_arg(options, 'card_type')
  @issuer = get_arg(options, 'card_issuer')
  @brand = get_arg(options, 'card_brand')
  @token = get_arg(options, 'card_token')
  @nickname = get_arg(options, 'nickname')
  @number = get_arg(options, 'card_number')
  @deleted = get_arg(options, 'deleted')
end