Get party revision function (#377)

This commit is contained in:
Артем 2018-09-18 14:59:25 +03:00 committed by GitHub
parent ed3116fd7e
commit c02205395c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1669,6 +1669,9 @@ service PartyManagement {
domain.Party Get (1: UserInfo user, 2: PartyID party_id)
throws (1: InvalidUser ex1, 2: PartyNotFound ex2)
PartyRevision GetRevision (1: UserInfo user, 2: PartyID party_id)
throws (1: InvalidUser ex1, 2: PartyNotFound ex2)
domain.Party Checkout (1: UserInfo user, 2: PartyID party_id, 3: PartyRevisionParam revision)
throws (1: InvalidUser ex1, 2: PartyNotFound ex2, 3: InvalidPartyRevision ex3)