-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
191 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...ain/java/com/crowdin/client/stringtranslations/model/ListLanguageTranslationsOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.crowdin.client.stringtranslations.model; | ||
|
||
import com.crowdin.client.core.model.BooleanInt; | ||
import com.crowdin.client.core.model.Pagination; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@EqualsAndHashCode(callSuper = true) | ||
@Data | ||
public class ListLanguageTranslationsOptions extends Pagination { | ||
|
||
private String stringIds; | ||
private String labelIds; | ||
private Long fileId; | ||
private Long branchId; | ||
private Long directoryId; | ||
private BooleanInt passedWorkflow; | ||
private Integer minApprovalCount; | ||
private String croql; | ||
private BooleanInt denormalizePlaceholders; | ||
} |
16 changes: 16 additions & 0 deletions
16
src/main/java/com/crowdin/client/stringtranslations/model/ListStringTranslationsOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.crowdin.client.stringtranslations.model; | ||
|
||
import com.crowdin.client.core.model.BooleanInt; | ||
import com.crowdin.client.core.model.Pagination; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@EqualsAndHashCode(callSuper = true) | ||
@Data | ||
public class ListStringTranslationsOptions extends Pagination { | ||
|
||
private Long stringId; | ||
private String languageId; | ||
private String orderBy; | ||
private BooleanInt denormalizePlaceholders; | ||
} |
18 changes: 18 additions & 0 deletions
18
...ain/java/com/crowdin/client/stringtranslations/model/ListTranslationApprovalsOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.crowdin.client.stringtranslations.model; | ||
|
||
import com.crowdin.client.core.model.Pagination; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@EqualsAndHashCode(callSuper = true) | ||
@Data | ||
public class ListTranslationApprovalsOptions extends Pagination { | ||
|
||
private String orderBy; | ||
private Long fileId; | ||
private String labelIds; | ||
private String excludeLabelIds; | ||
private Long stringId; | ||
private String languageId; | ||
private Long translationId; | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/com/crowdin/client/stringtranslations/model/ListTranslationVotesOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.crowdin.client.stringtranslations.model; | ||
|
||
import com.crowdin.client.core.model.BooleanInt; | ||
import com.crowdin.client.core.model.Pagination; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@EqualsAndHashCode(callSuper = true) | ||
@Data | ||
public class ListTranslationVotesOptions extends Pagination { | ||
|
||
private Long stringId; | ||
private String languageId; | ||
private Long translationId; | ||
private Long fileId; | ||
private String labelIds; | ||
private String excludeLabelIds; | ||
} |