Sha256: 56f92d0a13b5f580798142280aa0c5b03cde3d41e965fbe0ed436d1e945a7c28

Contents?: true

Size: 518 Bytes

Versions: 3

Compression:

Stored size: 518 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  # YouCanBookMe's Card model.
  class Card
    include ModelUtils

    # @return [String]
    attr_accessor :brand
    # @return [String]
    attr_accessor :country
    # @return [String]
    attr_accessor :expDate
    # @return [String]
    attr_accessor :id
    # @return [Boolean]
    attr_accessor :isDefault
    # @return [String]
    attr_accessor :last4
    # @return [String]
    attr_accessor :name
    # @return [String]
    attr_accessor :token
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
youcanbookme-0.0.3.alpha lib/youcanbookme/models/card.rb
youcanbookme-0.0.2.alpha lib/youcanbookme/models/card.rb
youcanbookme-0.0.1.alpha lib/youcanbookme/models/card.rb