/**
 * This interface defines the options that can be sent into the delete data set function.
 */
export interface IDeleteDatasetOptions {
    /**
     * The volume where the data set resides.
     */
    volume?: string;
}
