class Roqua::RomApi::GetRespondent
@api private
Public Instance Methods
execute()
click to toggle source
# File lib/roqua/rom_api/get_respondent.rb, line 8 def execute validate_response_for do basic_auth_session.get "/dossiers/#{dossier_id}/respondents/#{respondent_id}" end end
Private Instance Methods
response_to_result(response)
click to toggle source
# File lib/roqua/rom_api/get_respondent.rb, line 16 def response_to_result(response) Models::Respondent.new(response) end