package tl; import java.nio.ByteBuffer; public class ChatParticipant extends tl.TChatParticipant { public ChatParticipant(ByteBuffer buffer) throws Exception { user_id = buffer.getInt(); inviter_id = buffer.getInt(); date = buffer.getInt(); } public ChatParticipant(int user_id, int inviter_id, int date) { this.user_id = user_id; this.inviter_id = inviter_id; this.date = date; } public ByteBuffer writeTo(ByteBuffer buffer, boolean boxed) throws Exception { int oldPos = buffer.position(); if (boxed) { buffer.putInt(0xc8d7493e); } buffer.putInt(user_id); buffer.putInt(inviter_id); buffer.putInt(date); if (oldPos + length() + (boxed ? 4 : 0) != buffer.position()) { System.err.println("Invalid length at ChatParticipant: expected " + (length() + (boxed ? 4 : 0)) + " bytes, got " + (buffer.position() - oldPos)); } return buffer; } public int length() throws Exception { return 12; } public String toString() { return "(chatParticipant user_id:" + user_id + " inviter_id:" + inviter_id + " date:" + date + ")"; } }