Package money.zumo.zumokit
Class CustodyType
- java.lang.Object
-
- money.zumo.zumokit.CustodyType
-
public final class CustodyType extends java.lang.Object
Account custody type, 'CUSTODY' or 'NON-CUSTODY'.Only relevant for crypto accounts. Fiat accounts are always of type 'CUSTODY'.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CUSTODY
Funds on custody accounts are managed by Zumo.static java.lang.String
NON_CUSTODY
Funds on non-custody accounts are managed by the end user.
-
Constructor Summary
Constructors Constructor Description CustodyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
CUSTODY
public static final java.lang.String CUSTODY
Funds on custody accounts are managed by Zumo. User does not need to unlock wallet to manage his funds.- See Also:
- Constant Field Values
-
NON_CUSTODY
public static final java.lang.String NON_CUSTODY
Funds on non-custody accounts are managed by the end user. User needs to unlock wallet to manage his funds.- See Also:
- Constant Field Values
-
-