class LastbillClient::UpdateTemplateRequest

@author ciappa_m@modulotech.fr Update data of the given template on the given job. @see LastbillClient::Request @see LastbillClient::Utils::FinalRequest @see LastbillClient::Utils::AuthentifiedRequest @since 0.1.0

Public Class Methods

new(id, template_id, body) click to toggle source
Calls superclass method
# File lib/lastbill_client/request/requests/update_template_request.rb, line 13
def initialize(id, template_id, body)
  super(:put, "api/performer/jobs/#{id}/templates/#{template_id}")

  @body = body
end