Class: DeepL::Requests::TranslationMemory::FindJob

Inherits:
Base
  • Object
show all
Defined in:
lib/deepl/requests/translation_memory/find_job.rb

Constant Summary

Constants inherited from Base

Base::MAX_GLOSSARY_IDS

Instance Attribute Summary collapse

Attributes inherited from Base

#api, #options, #response

Instance Method Summary collapse

Methods inherited from Base

#details

Constructor Details

#initialize(api, job_id, options = {}) ⇒ FindJob

Returns a new instance of FindJob.



12
13
14
15
# File 'lib/deepl/requests/translation_memory/find_job.rb', line 12

def initialize(api, job_id, options = {})
  super(api, options)
  @job_id = job_id
end

Instance Attribute Details

#job_idObject (readonly)

Returns the value of attribute job_id.



10
11
12
# File 'lib/deepl/requests/translation_memory/find_job.rb', line 10

def job_id
  @job_id
end

Instance Method Details

#requestObject



17
18
19
# File 'lib/deepl/requests/translation_memory/find_job.rb', line 17

def request
  build_job(*execute_request_with_retries(get_request))
end

#to_sObject



21
22
23
# File 'lib/deepl/requests/translation_memory/find_job.rb', line 21

def to_s
  "GET #{uri.request_uri}"
end