Method: Tenk::Projects::BillRates#update

Defined in:
lib/projects/bill_rates.rb

#update(project_id, bill_rate_id, opts = {}) ⇒ Hashie::Mash

Update an BillRate for this project

Parameters:

  • project_id (Integer)

    the id of the project

  • bill_rate_id (Integer)

    the id of the bill_rate

  • opts (Hash) (defaults to: {})

    the post parameters to add to the create request

Returns:

  • (Hashie::Mash)

    the API response as a Hashie::Mash

See Also:



48
49
50
# File 'lib/projects/bill_rates.rb', line 48

def update(project_id, bill_rate_id, opts = {})
  super(project_id, bill_rate_id, UpdateRequest.new(opts))
end