Sha256: da71c8f9af11f443b30db9cd33c81f8c0221198eb89ef318a0223c4665410276

Contents?: true

Size: 538 Bytes

Versions: 3

Compression:

Stored size: 538 Bytes

Contents

# frozen_string_literal: true

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

    # @return [Boolean]
    attr_accessor :active
    # @return [String]
    attr_accessor :currency
    # @return [Integer]
    attr_accessor :currencyFactor
    # @return [String]
    attr_accessor :partner
    # @return [String]
    attr_accessor :partnerDescription
    # @return [Integer]
    attr_accessor :pricePerSlot
    # @return [Integer]
    attr_accessor :roundingPrecision
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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