Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
theSoenke committed Sep 19, 2024
1 parent 7161c93 commit 9696484
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ public void uploadCreateTest() throws ApiException, IOException, InterruptedExce

mockBackend.enqueue(mockResponse);

public class FormatOptions {
public boolean unescape_tags = false;

public FormatOptions(boolean val) {
unescape_tags = val;
}
}

String projectId = "projectId_example";
String xPhraseAppOTP = null;
String branch = "branch_example";
Expand All @@ -104,7 +112,7 @@ public void uploadCreateTest() throws ApiException, IOException, InterruptedExce
Boolean skipUnverification = null;
String fileEncoding = null;
Object localeMapping = null;
Object formatOptions = null;
Object formatOptions = new Formatoptions(true);
Boolean autotranslate = null;
Boolean markReviewed = null;
Boolean tagOnlyAffectedKeys = null;
Expand Down

0 comments on commit 9696484

Please sign in to comment.