require 'date' require 'ostruct' module HelixWebServices # A defect, enhancement request, or other job specification.\n\nThe actual fields in a job can be edited by a superuser in your system.\nThe default set of fields in a system are Job, Status, User, Date, and Description. # # Note: For Ruby, this is actually not generated automatically. class JobCommand < OpenStruct def initialize(attributes = {}) super(attributes) end # build the object from hash def build_from_hash(attributes) attributes.each { |k,v| self[k] = v } self end # return the object in the form of hash def to_hash self.to_h end end end