package im.actor.core.api.rpc; /* * Generated by the Actor API Scheme generator. DO NOT EDIT! */ import im.actor.runtime.bser.*; import im.actor.runtime.collections.*; import static im.actor.runtime.bser.Utils.*; import im.actor.core.network.parser.*; import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.NotNull; import com.google.j2objc.annotations.ObjectiveCName; import java.io.IOException; import java.util.List; import java.util.ArrayList; import im.actor.core.api.*; public class RequestCreateNewEventBus extends Request<ResponseCreateNewEventBus> { public static final int HEADER = 0xa69; public static RequestCreateNewEventBus fromBytes(byte[] data) throws IOException { return Bser.parse(new RequestCreateNewEventBus(), data); } private Long timeout; private Boolean isOwned; public RequestCreateNewEventBus(@Nullable Long timeout, @Nullable Boolean isOwned) { this.timeout = timeout; this.isOwned = isOwned; } public RequestCreateNewEventBus() { } @Nullable public Long getTimeout() { return this.timeout; } @Nullable public Boolean isOwned() { return this.isOwned; } @Override public void parse(BserValues values) throws IOException { this.timeout = values.optLong(1); this.isOwned = values.optBool(2); } @Override public void serialize(BserWriter writer) throws IOException { if (this.timeout != null) { writer.writeLong(1, this.timeout); } if (this.isOwned != null) { writer.writeBool(2, this.isOwned); } } @Override public String toString() { String res = "rpc CreateNewEventBus{"; res += "timeout=" + this.timeout; res += ", isOwned=" + this.isOwned; res += "}"; return res; } @Override public int getHeaderKey() { return HEADER; } }