import { Command } from '../../enums/Command.js';

/**
 * Represents the response for a Verify control operation.
 */
type VerifyControlResponse = {
    /**
     * The status code indicating the outcome of the operation.
     */
    status: string;
    /**
     * The command associated with the Verify control operation.
     */
    command: Command;
};

export type { VerifyControlResponse };
