Variable $ProjectFeesConst

$ProjectFees: {
    additionalProperties: false;
    properties: {
        createdAt: {
            description: "Creation date";
            example: "2021-10-01T00:00:00Z";
            format: "date-time";
            type: "string";
        };
        crypto: {
            $ref: "#/components/schemas/ProjectCryptoFees";
        };
        projectId: {
            description: "Project ID";
            type: "string";
        };
        stripe: {
            $ref: "#/components/schemas/ProjectStripeFees";
        };
        updatedAt: {
            description: "Last update date";
            example: "2021-10-01T00:00:00Z";
            format: "date-time";
            type: "string";
        };
    };
    required: readonly ["projectId", "createdAt", "updatedAt"];
    type: "object";
} = ...