Sha256: 78d1df87200c693dbb242fa43ce40fe1b357e7524379b822f79e0bee566b6c7e

Contents?: true

Size: 741 Bytes

Versions: 3

Compression:

Stored size: 741 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  class ProfileTeamMembers
    include ModelUtils

    ASSOCIATION = {
      items: ProfileTeamMember
    }.freeze

    # @return [Boolean]
    attr_accessor :active
    # @return [String]
    # ['ORDERED_FIRST_FREE', 'RANDOM_FIRST_FREE']
    attr_accessor :allocationStrategy
    # @return [Boolean]
    attr_accessor :allowTeamMemberChangeOnReschedule
    # @return [Boolean]
    attr_accessor :assumeNoPreferenceOption
    # @return [String]
    attr_accessor :description
    # @return [Boolean]
    attr_accessor :includeNoPreferenceOption
    # @return [Array<YouCanBookMe::ProfileTeamMember>]
    attr_accessor :items
    # @return [Boolean]
    attr_accessor :randomOrder
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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