class Roqua::RomApi::UpdateResponse

@api private

Public Instance Methods

execute() click to toggle source
# File lib/roqua/rom_api/update_response.rb, line 12
def execute
  validate_response_for do
    basic_auth_session.patch "/dossiers/#{dossier_id}/responses/#{external_id}",
                             questionnaire_key: questionnaire_key,
                             answer_data: answer_data,
                             filled_out_at: (filled_out_at.to_i if filled_out_at),
                             started_at: (started_at.to_i if started_at)
  end
end
response_to_result(response) click to toggle source
# File lib/roqua/rom_api/update_response.rb, line 22
def response_to_result(response)
  Models::Response.new(response)
end