Skip to content

Commit

Permalink
change the name of the parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
malvarezphrase committed Sep 26, 2024
1 parent 4f1ceeb commit 580589e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,12 @@ public void localeDownloadTest() throws ApiException, IOException, InterruptedEx
String sourceLocaleId = null;
Object customMetadataFilters = null;
String translationKeyPrefix = null;
Boolean useTranslationKeyPrefixAsFilter = null;
Boolean filterByPrefix = null;
File response = api.localeDownload(projectId, id, xPhraseAppOTP, ifModifiedSince, ifNoneMatch,
branch, fileFormat, tags, tag, includeEmptyTranslations, excludeEmptyZeroForms,
includeTranslatedKeys, keepNotranslateTags, convertEmoji, formatOptions, encoding,
skipUnverifiedTranslations, includeUnverifiedTranslations, useLastReviewedVersion,
fallbackLocaleId, sourceLocaleId, translationKeyPrefix, useTranslationKeyPrefixAsFilter,
fallbackLocaleId, sourceLocaleId, translationKeyPrefix, filterByPrefix,
customMetadataFilters);

String fileContents = new String(java.nio.file.Files.readAllBytes(response.toPath()));
Expand Down
2 changes: 1 addition & 1 deletion doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -8787,7 +8787,7 @@
{
"description": "Only download translation keys containing the specified prefix, and remove the prefix from the generated file.",
"example": null,
"name": "use_translation_key_prefix_as_filter",
"name": "filter_by_prefix",
"in": "query",
"schema": {
"type": "boolean"
Expand Down
2 changes: 1 addition & 1 deletion paths/locales/download.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ parameters:
type: string
- description: Only download translation keys containing the specified prefix, and remove the prefix from the generated file.
example:
name: use_translation_key_prefix_as_filter
name: filter_by_prefix
in: query
schema:
type: boolean
Expand Down

0 comments on commit 580589e

Please sign in to comment.