001package org.anarres.qemu.qapi.api;
002
003import com.fasterxml.jackson.annotation.JsonInclude;
004import com.fasterxml.jackson.annotation.JsonProperty;
005import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
006import javax.annotation.CheckForNull;
007import javax.annotation.Nonnull;
008import org.anarres.qemu.qapi.common.*;
009
010/**
011 * Autogenerated class.
012 *
013 * <pre>QApiCommandDescriptor{name=drive-backup, returns=null, data=DriveBackup}</pre>
014 */
015// QApiCommandDescriptor{name=drive-backup, returns=null, data=DriveBackup}
016public class DriveBackupCommand extends QApiCommand<DriveBackup, DriveBackupCommand.Response> {
017
018        /** Response to a DriveBackupCommand. */
019        public static class Response extends QApiResponse<java.lang.Void> {
020        }
021
022        /** Constructs a new DriveBackupCommand. */
023        public DriveBackupCommand(@Nonnull DriveBackup argument) {
024                super("drive-backup", Response.class, argument);
025        }
026
027}