Class: PhraseApp::RequestParams::TranslationsUnverifyParams
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- PhraseApp::RequestParams::TranslationsUnverifyParams
- Defined in:
- lib/phraseapp-ruby.rb
Overview
TranslationsUnverifyParams
Parameters:
- order
-
Order direction. Can be one of: asc, desc.
- 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>tags:XYZfor tags on the translation</li> <li>unverified:{true|false}for verification status</li> <li>updated_at{>=|<=}2013-02-21for date range queries</li> </ul> Find more examples <a href=“/api/v2/examples/”>here</a>. - sort
-
Sort criteria. Can be one of: key_name, created_at, updated_at.
Instance Method Summary collapse
Instance Method Details
#order=(val) ⇒ Object
1478 1479 1480 |
# File 'lib/phraseapp-ruby.rb', line 1478 def order=(val) self.order = val end |
#q=(val) ⇒ Object
1482 1483 1484 |
# File 'lib/phraseapp-ruby.rb', line 1482 def q=(val) self.q = val end |
#sort=(val) ⇒ Object
1486 1487 1488 |
# File 'lib/phraseapp-ruby.rb', line 1486 def sort=(val) self.sort = val end |
#validate ⇒ Object
1490 1491 1492 |
# File 'lib/phraseapp-ruby.rb', line 1490 def validate end |