mirror of
https://github.com/valitydev/damsel.git
synced 2024-11-06 09:45:21 +00:00
HG-386 Remove wallet management methods from party management (#356)
This commit is contained in:
parent
abda90bd81
commit
f780cf7c2e
@ -1721,23 +1721,15 @@ service PartyManagement {
|
||||
|
||||
/* Wallet */
|
||||
|
||||
domain.Wallet GetWallet (1: UserInfo user, 2: PartyID party_id, 3: WalletID id)
|
||||
throws (1: InvalidUser ex1, 2: PartyNotFound ex2, 3: WalletNotFound ex3)
|
||||
|
||||
void SuspendWallet (1: UserInfo user, 2: PartyID party_id, 3: WalletID id)
|
||||
throws (1: InvalidUser ex1, 2: PartyNotFound ex2, 3: WalletNotFound ex3, 4: InvalidWalletStatus ex4)
|
||||
|
||||
void ActivateWallet (1: UserInfo user, 2: PartyID party_id, 3: WalletID id)
|
||||
throws (1: InvalidUser ex1, 2: PartyNotFound ex2, 3: WalletNotFound ex3, 4: InvalidWalletStatus ex4)
|
||||
|
||||
void BlockWallet (1: UserInfo user, 2: PartyID party_id, 3: WalletID id, 4: string reason)
|
||||
throws (1: InvalidUser ex1, 2: PartyNotFound ex2, 3: WalletNotFound ex3, 4: InvalidWalletStatus ex4)
|
||||
|
||||
void UnblockWallet (1: UserInfo user, 2: PartyID party_id, 3: WalletID id, 4: string reason)
|
||||
throws (1: InvalidUser ex1, 2: PartyNotFound ex2, 3: WalletNotFound ex3, 4: InvalidWalletStatus ex4)
|
||||
|
||||
domain.TermSet ComputeWalletTerms (1: UserInfo user, 2: PartyID party_id, 3: WalletID id, 4: base.Timestamp timestamp)
|
||||
throws (1: InvalidUser ex1, 2: PartyNotFound ex2, 3: PartyNotExistsYet ex3, 4: WalletNotFound ex4)
|
||||
domain.TermSet ComputeWalletTerms (
|
||||
1: UserInfo user,
|
||||
2: PartyID party_id,
|
||||
3: ContractID contract_id,
|
||||
4: WalletID wallet_id,
|
||||
5: domain.CurrencyRef currency,
|
||||
6: base.Timestamp timestamp
|
||||
)
|
||||
throws (1: InvalidUser ex1, 2: PartyNotFound ex2, 3: PartyNotExistsYet ex3)
|
||||
|
||||
/* Claim */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user