Class: PhraseApp::RequestParams::KeysDeleteParams
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- PhraseApp::RequestParams::KeysDeleteParams
- Defined in:
- lib/phraseapp-ruby.rb
Overview
KeysDeleteParams
Parameters:
- locale_id
-
Locale used to determine the translation state of a key when filtering for untranslated or translated keys.
- q
-
Specify a search term query including wildcard or exact matching. It will search the key metadata for matching results. Searched fields include key name, description, tags, translations.
Also supports the following qualifiers in the query:
<ul> <li>name:key_namefor text queries on key names</li> <li>translated:{true|false}for translation status (also requireslocale_idto be specified)</li> <li>updated_at{>=|<=}2013-02-21T00:00:00Zfor date range queries</li> </ul> Please note that the argument is named--querywhen using the <a href=“phraseapp.com/cli” target=“_blank”>PhraseApp Client</a>. <br /><br /> Find more examples <a href=“/api/v2/general/examples/”>here</a>.
Instance Method Summary collapse
Instance Method Details
#locale_id=(val) ⇒ Object
1033 1034 1035 |
# File 'lib/phraseapp-ruby.rb', line 1033 def locale_id=(val) self.locale_id = val end |
#q=(val) ⇒ Object
1037 1038 1039 |
# File 'lib/phraseapp-ruby.rb', line 1037 def q=(val) self.q = val end |
#validate ⇒ Object
1041 1042 1043 |
# File 'lib/phraseapp-ruby.rb', line 1041 def validate end |