# Entity

Git Source

struct Entity {
    bytes32 assetId;
    uint256 collateralRatio;
    uint256 maxCapacity;
    uint256 utilizedCapacity;
    bool simplePolicyEnabled;
}

Properties

Name Type Description
assetId bytes32
collateralRatio uint256
maxCapacity uint256 Maximum allowable amount of capacity that an entity is given. Denominated by assetId.
utilizedCapacity uint256 The utilized capacity of the entity. Denominated by assetId.
simplePolicyEnabled bool