Sha256: a6e5e9752c400e99d4d7f5939194f2513e64a8936b91a7fe9202f8157d998b4c
Contents?: true
Size: 634 Bytes
Versions: 3
Compression:
Stored size: 634 Bytes
Contents
# frozen_string_literal: true module YouCanBookMe # YouCanBookMe's ProfileAppointmentTypes model. 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