Sha256: 45e23a23310e630f381551d7f0cc78141ac2185a8138aaeba46c1002b063dcc2

Contents?: true

Size: 524 Bytes

Versions: 3

Compression:

Stored size: 524 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  class ProfilePayments
    include ModelUtils

    # @return [Boolean]
    attr_accessor :active
    # @return [String]
    attr_accessor :currency
    # @return [Integer]
    attr_accessor :currencyFactor
    # @return [String]
    # ['STRIPE', 'PAYMILL']
    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.6.alpha lib/youcanbookme/models/profile_payments.rb
youcanbookme-0.0.5.alpha lib/youcanbookme/models/profile_payments.rb
youcanbookme-0.0.4.alpha lib/youcanbookme/models/profile_payments.rb