add DisputeAlreadyExistResult
Some checks are pending
Java: Deploy / deploy (push) Waiting to run

This commit is contained in:
Anatoly Karlov 2024-09-19 17:31:25 +07:00
parent 61eff7c4f5
commit a790f8dfba
2 changed files with 5 additions and 2 deletions

View File

@ -7,9 +7,9 @@ typedef string DisputeID
service ManualParsingService {
void CancelPending (1: CancelParamsRequest CancelParamsRequest)
void CancelPending (1: CancelParamsRequest cancelParamsRequest)
void ApprovePending (1: ApproveParamsRequest ApproveParamsRequest)
void ApprovePending (1: ApproveParamsRequest approveParamsRequest)
void BindCreated (1: BindParamsRequest bindParamsRequest)

View File

@ -23,6 +23,7 @@ struct DisputeParams {
union DisputeCreatedResult {
1: DisputeCreatedSuccessResult successResult
2: DisputeCreatedFailResult failResult
3: DisputeAlreadyExistResult alreadyExistResult
}
struct DisputeContext {
@ -57,6 +58,8 @@ struct DisputeCreatedFailResult {
1: required domain.Failure failure
}
struct DisputeAlreadyExistResult {}
struct DisputeStatusSuccessResult {
1: optional domain.Amount changedAmount
}