Sha256: b758892f4c1a0af072a27f30fa0ca56c8f917b2cca38fa83cc9b562a88f8de1d

Contents?: true

Size: 529 Bytes

Versions: 3

Compression:

Stored size: 529 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  class ProfileCalendar
    include ModelUtils

    ASSOCIATION = {
      calendar: Calendar
    }.freeze

    # @return [YouCanBookMe::Calendar]
    attr_accessor :calendar
    # @return [String]
    attr_accessor :id
    # @return [String]
    attr_accessor :timeZone
    # @return [String]
    attr_accessor :title
    # @return [String]
    attr_accessor :url
    # @return [String]
    attr_accessor :userName
    # @return [Boolean]
    attr_accessor :writeable
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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