class MfCloud::Invoice::Api::Office
Constants
- PATH
Public Instance Methods
get()
click to toggle source
# File lib/mf_cloud/invoice/api/office.rb, line 7 def get response_body = @client.get(PATH) MfCloud::Invoice::Model::Office.new(response_body) end
update(params)
click to toggle source
# File lib/mf_cloud/invoice/api/office.rb, line 12 def update(params) response_body = @client.put(PATH, office: params) MfCloud::Invoice::Model::Office.new(response_body) end