Variable $NullablePriceConst

$NullablePrice: {
    description: "A positive integer representing how much to charge in the smallest currency.<br /> For example: <ul>\n <li>$12.34 would be <code>1234</code></li>\n <li>12.34 USDC (6 decimals) would be <code>12340000</code></li>\n <li>ETH amounts (18 decimals) would be stored in wei</li>\n</ul>";
    example: "1234";
    nullable: true;
    pattern: "^[0-9]+$";
    readOnly: true;
    type: "string";
} = ...