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=VNC_INITIALIZED, data={server=VncServerInfo, client=VncClientInfo}}</pre>
013 */
014// QApiEventDescriptor{name=VNC_INITIALIZED, data={server=VncServerInfo, client=VncClientInfo}}
015public class VncInitializedEvent extends QApiEvent {
016
017        public static class Data {
018                @SuppressFBWarnings("NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR")
019                @JsonProperty("server")
020                @Nonnull
021                public VncServerInfo server;
022                @SuppressFBWarnings("NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR")
023                @JsonProperty("client")
024                @Nonnull
025                public VncClientInfo client;
026        }
027
028        @JsonProperty("data")
029        public Data data;
030}