Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lobbyist-ruby / lib / lobbyist / workflow_system.rb
Size: Mime:
module Lobbyist

  class WorkflowSystem < Lobbyist::Base
    attr_accessor :id, :display_name, :name, :version, :status, :visible, :database_name, :access_type
    attr_accessor :data_padding_enabled, :use_processor, :respect_commercial_flag
    attr_accessor :enable_auto_invitations, :created_at, :updated_at

    def self.list(params = {})
      create_collection_from_response(get("/v1/workflow_systems.json", params))
    end

  end

end