class PhraseApp::RequestParams::KeysTagParams
Parameters:¶ ↑
- branch
-
specify the branch to use
- locale_id
-
Locale used to determine the translation state of a key when filtering for untranslated or translated keys.
- q
-
q_description_placeholder
- tags
-
Tag or comma-separated list of tags to add to the matching collection of keys
Public Instance Methods
branch=(val)
click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2575 def branch=(val) super(val) end
locale_id=(val)
click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2579 def locale_id=(val) super(val) end
q=(val)
click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2583 def q=(val) super(val) end
validate()
click to toggle source
# File lib/phraseapp-ruby.rb, line 2591 def validate if tags == nil || tags == "" raise PhraseApp::ParamsHelpers::ParamsValidationError.new("Required parameter \"tags\" of \"keys_tagParams\" not set") end end