class PhraseApp::RequestParams::JobKeysCreateParams
Parameters:¶ ↑
- branch
-
specify the branch to use
- translation_key_ids
-
ids of keys that should added to the job
Public Instance Methods
branch=(val)
click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2122 def branch=(val) super(val) end
translation_key_ids=(val)
click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2126 def translation_key_ids=(val) super(val.split(',')) end
validate()
click to toggle source
# File lib/phraseapp-ruby.rb, line 2130 def validate if translation_key_ids == nil raise PhraseApp::ParamsHelpers::ParamsValidationError.new("Required parameter \"translation_key_ids\" of \"job_keys_createParams\" not set") end end