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 ResponseCreateGroupObsolete extends Response { public static final int HEADER = 0x42; public static ResponseCreateGroupObsolete fromBytes(byte[] data) throws IOException { return Bser.parse(new ResponseCreateGroupObsolete(), data); } private ApiGroupOutPeer groupPeer; private int seq; private byte[] state; private List<Integer> users; private long date; public ResponseCreateGroupObsolete(@NotNull ApiGroupOutPeer groupPeer, int seq, @NotNull byte[] state, @NotNull List<Integer> users, long date) { this.groupPeer = groupPeer; this.seq = seq; this.state = state; this.users = users; this.date = date; } public ResponseCreateGroupObsolete() { } @NotNull public ApiGroupOutPeer getGroupPeer() { return this.groupPeer; } public int getSeq() { return this.seq; } @NotNull public byte[] getState() { return this.state; } @NotNull public List<Integer> getUsers() { return this.users; } public long getDate() { return this.date; } @Override public void parse(BserValues values) throws IOException { this.groupPeer = values.getObj(1, new ApiGroupOutPeer()); this.seq = values.getInt(3); this.state = values.getBytes(4); this.users = values.getRepeatedInt(5); this.date = values.getLong(6); } @Override public void serialize(BserWriter writer) throws IOException { if (this.groupPeer == null) { throw new IOException(); } writer.writeObject(1, this.groupPeer); writer.writeInt(3, this.seq); if (this.state == null) { throw new IOException(); } writer.writeBytes(4, this.state); writer.writeRepeatedInt(5, this.users); writer.writeLong(6, this.date); } @Override public String toString() { String res = "tuple CreateGroupObsolete{"; res += "}"; return res; } @Override public int getHeaderKey() { return HEADER; } }