Sha256: 3ad955d4193eadf59193887ce8a550dc5d593c44551be411c04781944bd31f7b

Contents?: true

Size: 398 Bytes

Versions: 3

Compression:

Stored size: 398 Bytes

Contents

# frozen_string_literal: true

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

    ASSOCIATION = {
      links: Link
    }.freeze

    # @return [String]
    attr_accessor :orm
    # @return [String]
    attr_accessor :id
    # @return [Array<YouCanBookMe::Link>]
    attr_accessor :links
    # @return [Integer]
    attr_accessor :seconds
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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