Class: Roqua::RomApi::CreateResponse Private

Inherits:
Endpoint
  • Object
show all
Defined in:
lib/roqua/rom_api/create_response.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#executeObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



11
12
13
14
15
16
17
18
19
# File 'lib/roqua/rom_api/create_response.rb', line 11

def execute
  validate_response_for do
    RomApi.basic_auth_session.post "/dossiers/#{dossier_id}/responses",
                                   questionnaire_key: questionnaire_key,
                                   answer_data: answer_data,
                                   filled_out_at: (filled_out_at.to_i if filled_out_at),
                                   respondent: respondent
  end
end

#response_to_result(response) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



21
22
23
# File 'lib/roqua/rom_api/create_response.rb', line 21

def response_to_result(response)
  Models::Response.new(response)
end