Variable $AdminWhitelistRequestConst

$AdminWhitelistRequest: {
    additionalProperties: false;
    properties: {
        contractAddress: {
            $ref: "#/components/schemas/ContractAddress";
            description: "Address of the smart-contract to whitelist";
            example: "0x3D9819210A31b4961b30EF54bE2aeD79B9c9Cd3B";
        };
        projectId: {
            description: "ID of the client's project";
            type: "string";
        };
    };
    required: readonly ["projectId", "contractAddress"];
    type: "object";
} = ...