Class: PhraseApp::RequestParams::TranslationsSearchParams

Inherits:
OpenStruct
  • Object
show all
Defined in:
lib/phraseapp-ruby.rb

Overview

TranslationsSearchParams

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:XYZ for tags on the translation</li> <li>unverified:{true|false} for verification status</li> <li>updated_at{>=|<=}2013-02-21 for 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



1449
1450
1451
# File 'lib/phraseapp-ruby.rb', line 1449

def order=(val)
  self.order = val
end

#q=(val) ⇒ Object



1453
1454
1455
# File 'lib/phraseapp-ruby.rb', line 1453

def q=(val)
  self.q = val
end

#sort=(val) ⇒ Object



1457
1458
1459
# File 'lib/phraseapp-ruby.rb', line 1457

def sort=(val)
  self.sort = val
end

#validateObject



1461
1462
1463
# File 'lib/phraseapp-ruby.rb', line 1461

def validate
  
end