Sha256: 81aea955143439506345c838f7b50505227ea9a6e84fd8e5ddf2375b2c7096fb

Contents?: true

Size: 584 Bytes

Versions: 3

Compression:

Stored size: 584 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  class ProfileAppointmentTypes
    include ModelUtils

    ASSOCIATION = {
      items: ProfileAppointmentType
    }.freeze

    # @return [Boolean]
    attr_accessor :active
    # @return [Boolean]
    attr_accessor :combinable
    # @return [String]
    attr_accessor :description
    # @return [Boolean]
    attr_accessor :groupsActive
    # @return [String]
    attr_accessor :groupsDivider
    # @return [Array<ProfileAppointmentType>]
    attr_accessor :items
    # @return [Boolean]
    attr_accessor :randomizable
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
youcanbookme-0.0.6.alpha lib/youcanbookme/models/profile_appointment_types.rb
youcanbookme-0.0.5.alpha lib/youcanbookme/models/profile_appointment_types.rb
youcanbookme-0.0.4.alpha lib/youcanbookme/models/profile_appointment_types.rb