Skip to content

Instantly share code, notes, and snippets.

@dima-thumbtack
Created June 6, 2018 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dima-thumbtack/f7ce7f71fa8fbf4274071a00946de13a to your computer and use it in GitHub Desktop.
Save dima-thumbtack/f7ce7f71fa8fbf4274071a00946de13a to your computer and use it in GitHub Desktop.
service Assignments {
void storeAssignment(
1:TExperimentContext context,
2:TExperimentAssignment assignment,
3:TExperimentStoreAssignmentOptions options
) throws (
1:exceptions.ServiceException serviceException,
2:exceptions.InputException inputException,
)
TExperimentAssignments getAssignments(
1:TExperimentContext context,
2:list<string> experimentIds,
3:TExperimentAssignmentOptions options
) throws (
1:exceptions.ServiceException serviceException,
2:exceptions.InputException inputException,
)
map<string, TExperimentAssignment> getAssignmentsBulk(
1:set<TExperimentContext> contexts,
2:string experimentId,
3:TExperimentAssignmentOptions options
) throws (
1:exceptions.ServiceException serviceException,
2:exceptions.InputException inputException,
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment