Variable $ProjectStripeFeesConst

$ProjectStripeFees: {
    additionalProperties: false;
    properties: {
        feePercentage: {
            description: "Project fee in base point. 1050 means 10.50%";
            example: 1050;
            type: "integer";
        };
        includeStripeFee: {
            description: "Include Stripe fee in the project fee";
            example: false;
            type: "boolean";
        };
        minimumFee: {
            description: "Minimum fee in cents. 125 means $1.25";
            example: 125;
            type: "integer";
        };
    };
    required: readonly ["feePercentage", "minimumFee", "includeStripeFee"];
    type: "object";
} = ...