require 'date' module HelixWebServices # A summary of jobs in the system. # # The actual fields in a job can be edited by a superuser in your system. # The default set of fields in a system are Job, Status, User, Date, and Description. # Fields in the output of this command may be missing if the superuser removed User, Status, Date, or Description. # # This is not an automatically generated class from Swagger. class JobsCommand < 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