Sha256: 49da512f32190664392e9a28200327d5d70d1f07c389a9217082b46e5b5c758b

Contents?: true

Size: 736 Bytes

Versions: 3

Compression:

Stored size: 736 Bytes

Contents

# frozen_string_literal: true

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

    ASSOCIATION = {
      items: ProfileTeamMember
    }.freeze

    # @return [Boolean]
    attr_accessor :active
    # @return [String]
    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.3.alpha lib/youcanbookme/models/profile_team_members.rb
youcanbookme-0.0.2.alpha lib/youcanbookme/models/profile_team_members.rb
youcanbookme-0.0.1.alpha lib/youcanbookme/models/profile_team_members.rb