Sha256: 5d7b9b29fac5918a20131757b260ab3429fd60653b66b5ef6696795fdbca0a47

Contents?: true

Size: 401 Bytes

Versions: 3

Compression:

Stored size: 401 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  class EventReminder
    include ModelUtils

    ASSOCIATION = {
      links: Link
    }.freeze

    # @return [String]
    # ['Email', 'PopUp', 'SMS']
    attr_accessor :form
    # @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.6.alpha lib/youcanbookme/models/event_reminder.rb
youcanbookme-0.0.5.alpha lib/youcanbookme/models/event_reminder.rb
youcanbookme-0.0.4.alpha lib/youcanbookme/models/event_reminder.rb