• This function creates a ClearProfileDataConfig operation using the specified Honeycomb instance and the provided arguments. The operation is used to clear the profile data configuration of a HoneycombProject.

    Parameters

    Returns Promise<{
        operation: Operation;
    }>

    An object containing the operation.

    Example

    const honeycomb = new Honeycomb(connection);

    // Define the ClearProfileDataConfig arguments.
    const args = {
    project: publicKey1, // Replace with the public key of the HoneycombProject.
    };

    // Create ClearProfileDataConfig operation.
    const { operation } = await createClearProfileDataConfigOperation(honeycomb, args);
    operation.send(); // The generated ClearProfileDataConfig operation.

Generated using TypeDoc