Class: PhraseApp::RequestParams::KeysUntagParams
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- PhraseApp::RequestParams::KeysUntagParams
- Defined in:
- lib/phraseapp-ruby.rb
Overview
KeysUntagParams
Parameters:
- 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
Instance Method Summary collapse
Instance Method Details
#locale_id=(val) ⇒ Object
1564 1565 1566 |
# File 'lib/phraseapp-ruby.rb', line 1564 def locale_id=(val) super(val) end |
#q=(val) ⇒ Object
1568 1569 1570 |
# File 'lib/phraseapp-ruby.rb', line 1568 def q=(val) super(val) end |
#tags=(val) ⇒ Object
1572 1573 1574 |
# File 'lib/phraseapp-ruby.rb', line 1572 def (val) super(val) end |
#validate ⇒ Object
1576 1577 1578 1579 1580 1581 |
# File 'lib/phraseapp-ruby.rb', line 1576 def validate if == nil || == "" raise PhraseApp::ParamsHelpers::ParamsValidationError.new("Required parameter \"tags\" of \"keys_untagParams\" not set") end end |