org.telegram.api.toppeer.TLTopPeer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
The newest version!
package org.telegram.api.toppeer;
import org.telegram.api.peer.TLAbsPeer;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import org.telegram.tl.TLObject;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* @author Ruben Bermudez
* @version 1.0
* @brief TODO
* @date 07 of August of 2016
*/
public class TLTopPeer extends TLObject {
public static final int CLASS_ID = 0xedcdc05b;
private TLAbsPeer peer;
private double rating;
@Override
public int getClassId() {
return CLASS_ID;
}
public TLAbsPeer getPeer() {
return peer;
}
public double getRating() {
return rating;
}
@Override
public void serializeBody(OutputStream stream) throws IOException {
StreamingUtils.writeTLObject(peer, stream);
StreamingUtils.writeDouble(rating, stream);
}
@Override
public void deserializeBody(InputStream stream, TLContext context) throws IOException {
peer = StreamingUtils.readTLObject(stream, context, TLAbsPeer.class);
rating = StreamingUtils.readDouble(stream);
}
@Override
public String toString() {
return "topPeer#edcdc05b";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy