Repository URL to install this package:
Version:
0.8.93 ▾
|
module Lobbyist
module V2
class DirectConnect < Lobbyist::V2::Base
attr_accessor :workflow_systems_count,:companies_with_problems, :uploads_today, :connected_not_processing
def self.stats(params={})
result = get('/v2/direct_connect/stats.json', params)
end
def self.companies_with_no_recent_uploads(params={})
result = get('/v2/direct_connect/no_files_uploaded_in_last_week.json', params)
end
def self.link_established_data_processing_disabled(params={})
result = get('/v2/direct_connect/link_established_data_processing_disabled.json', params)
end
def self.files_uploaded_today(params={})
result = get('/v2/direct_connect/files_uploaded_today.json', params)
end
end
end
end