-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify flags DTO & manager object (#522)
- Loading branch information
Showing
10 changed files
with
174 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- development | ||
- SDKS-7440 | ||
|
||
jobs: | ||
build-app: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,52 @@ | ||
package io.split.android.client.dtos; | ||
|
||
import androidx.annotation.Nullable; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Set; | ||
|
||
public class Split { | ||
|
||
@SerializedName("name") | ||
public String name; | ||
|
||
@SerializedName("seed") | ||
public int seed; | ||
|
||
@SerializedName("status") | ||
public Status status; | ||
|
||
@SerializedName("killed") | ||
public boolean killed; | ||
|
||
@SerializedName("defaultTreatment") | ||
public String defaultTreatment; | ||
|
||
@SerializedName("conditions") | ||
public List<Condition> conditions; | ||
|
||
@SerializedName("trafficTypeName") | ||
public String trafficTypeName; | ||
|
||
@SerializedName("changeNumber") | ||
public long changeNumber; | ||
|
||
@SerializedName("trafficAllocation") | ||
public Integer trafficAllocation; | ||
|
||
@SerializedName("trafficAllocationSeed") | ||
public Integer trafficAllocationSeed; | ||
|
||
@SerializedName("algo") | ||
public int algo; | ||
|
||
@SerializedName("configurations") | ||
public Map<String, String> configurations; | ||
|
||
@Nullable | ||
@SerializedName("sets") | ||
public Set<String> sets; | ||
} |
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
Oops, something went wrong.