The Honeycomb instance to use for the operation.
The arguments required to create the operation.
An object containing the operation.
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
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.