/**
 * This interface defines the options that can be sent into the copy data set function.
 */
export interface IMigrateOptions {
    /**
     * If true then the function waits for completion of the request.
     * If false the request is queued.
     */
    wait?: boolean;
}
