Repository URL to install this package:
Version:
0.9.3 ▾
|
module Lobbyist
module V2
class EnterpriseSetting < Lobbyist::V2::Base
attr_accessor :id, :enterprise_id, :location_license_fee, :location_activation_fee
attr_accessor :location_termination_fee, :creation_fee, :reactivation_fee, :termination_fee
attr_accessor :misc_fee, :billing_email, :notification_user_id, :wants_member_calls
attr_accessor :billing_type, :full_access_allowed, :enable_reviews_page, :created_at, :updated_at
def self.show(id, params = {})
create_from_response(get("/v2/enterprise_settings/#{id}.json", params))
end
def self.update(id, params)
create_from_response(put("/v2/enterprise_settings/#{id}.json", {enterprise: params}))
end
end
end
end