JBTokenAmount
Code
https://github.com/jbx-protocol/juice-contracts-v2/blob/main/contracts/structs/JBTokenAmount.sol
Definition
/*
  @member token The token the payment was made in.
  @member value The amount of tokens that was paid, as a fixed point number.
  @member decimals The number of decimals included in the value fixed point number.
  @member currency The expected currency of the value.
**/
struct JBTokenAmount {
  address token;
  uint256 value;
  uint256 decimals;
  uint256 currency;
}
tokenis the token the payment was made in.valueis the amount of tokens that was paid, as a fixed point number.decimalsis the number of decimals included in the value fixed point number.currencyis the expected currency of the value.