001package org.anarres.qemu.qapi.api;
002
003import com.fasterxml.jackson.annotation.JsonProperty;
004import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
005import javax.annotation.CheckForNull;
006import javax.annotation.Nonnull;
007import org.anarres.qemu.qapi.common.*;
008
009/**
010 * Autogenerated class.
011 *
012 * <pre>QApiEventDescriptor{name=BLOCK_WRITE_THRESHOLD, data={node-name=str, amount-exceeded=uint64, write-threshold=uint64}}</pre>
013 */
014// QApiEventDescriptor{name=BLOCK_WRITE_THRESHOLD, data={node-name=str, amount-exceeded=uint64, write-threshold=uint64}}
015public class BlockWriteThresholdEvent extends QApiEvent {
016
017        public static class Data {
018                @SuppressFBWarnings("NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR")
019                @JsonProperty("node-name")
020                @Nonnull
021                public java.lang.String nodeName;
022                @SuppressFBWarnings("NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR")
023                @JsonProperty("amount-exceeded")
024                @Nonnull
025                public long amountExceeded;
026                @SuppressFBWarnings("NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR")
027                @JsonProperty("write-threshold")
028                @Nonnull
029                public long writeThreshold;
030        }
031
032        @JsonProperty("data")
033        public Data data;
034}