Type Alias pallet_nfts::AttributeDepositOf
source · pub type AttributeDepositOf<T, I> = AttributeDeposit<DepositBalanceOf<T, I>, <T as SystemConfig>::AccountId>;
Expand description
A type that holds the deposit amount for an item’s attribute.
Aliased Type§
struct AttributeDepositOf<T, I> {
pub account: Option<<T as Config>::AccountId>,
pub amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
}
Fields§
§account: Option<<T as Config>::AccountId>
A depositor account.
amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
An amount that gets reserved.