Sha256: a09174f30dfa507198587648af2d56d65990343af44b8279745f3500869130cf

Contents?: true

Size: 425 Bytes

Versions: 3

Compression:

Stored size: 425 Bytes

Contents

# frozen_string_literal: true

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

    ASSOCIATION = {
      targetCalendar: ProfileCalendar
    }.freeze

    # @return [Array<String>]
    attr_accessor :calendarIds
    # @return [YouCanBookMe::ProfileCalendar]
    attr_accessor :targetCalendar
    # @return [String]
    attr_accessor :targetCalendarId
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
youcanbookme-0.0.3.alpha lib/youcanbookme/models/profile_calendars.rb
youcanbookme-0.0.2.alpha lib/youcanbookme/models/profile_calendars.rb
youcanbookme-0.0.1.alpha lib/youcanbookme/models/profile_calendars.rb