Sha256: 8e8618975ce01653effc7916c344ccae9127489d38b745e45c7d71e4f47ef8d1
Contents?: true
Size: 1.65 KB
Versions: 32
Compression:
Stored size: 1.65 KB
Contents
# Phrase::TranslationsSearchParameters ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **branch** | **String** | specify the branch to use | [optional] **sort** | **String** | Sort criteria. Can be one of: key_name, created_at, updated_at. | [optional] **order** | **String** | Order direction. Can be one of: asc, desc. | [optional] **q** | **String** | Specify a query to find translations by content (including wildcards).<br><br> <i>Note: Search is limited to 10000 results and may not include recently updated data (depending on the project size).</i><br> The following qualifiers are supported in the query:<br> <ul> <li><code>id:translation_id,...</code> for queries on a comma-separated list of ids</li> <li><code>tags:XYZ</code> for tags on the translation</li> <li><code>unverified:{true|false}</code> for verification status</li> <li><code>excluded:{true|false}</code> for exclusion status</li> <li><code>updated_at:{>=|<=}2013-02-21T00:00:00Z</code> for date range queries</li> </ul> Find more examples <a href=\"#overview--usage-examples\">here</a>. | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::TranslationsSearchParameters.new(branch: my-feature-branch, sort: updated_at, order: desc, q: PhraseApp*%20unverified:true%20excluded:true%20tags:feature,center) ```
Version data entries
32 entries across 32 versions & 1 rubygems