_packedUserPropertiesOf
Contract: JBFundingCycleStore
Stores the user defined properties of each funding cycle, packed into one storage slot.
Definition
/**
  @notice
  Stores the user defined properties of each funding cycle, packed into one storage slot.
  _projectId The ID of the project to get properties of.
  _configuration The funding cycle configuration to get properties of.
*/
mapping(uint256 => mapping(uint256 => uint256)) private _packedUserPropertiesOf;
- Arguments:
- _projectIdis the ID of the project to get properties of.
- _configurationis the funding cycle configuration to get properties of.
 
- The resulting view function is private to this contract.