class Quby::Questionnaires::Entities::Definition

Attributes

json[RW]
key[RW]
path[RW]
sourcecode[RW]
timestamp[RW]

Public Class Methods

new(key:, path:, sourcecode: "", json: nil, timestamp: nil) click to toggle source
# File lib/quby/questionnaires/entities/definition.rb, line 14
def initialize(key:, path:, sourcecode: "", json: nil, timestamp: nil)
  @path = path
  @key = key
  @sourcecode = sourcecode
  @json = json
  @timestamp = timestamp
end