All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.telegram.api.functions.messages.TLRequestMessagesGetPeerDialogs Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
package org.telegram.api.functions.messages;

import org.telegram.api.input.peer.TLAbsInputPeer;
import org.telegram.api.messages.TLMessagesPeerDialogs;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import org.telegram.tl.TLMethod;
import org.telegram.tl.TLObject;
import org.telegram.tl.TLVector;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * The type TL request messages get chats.
 */
public class TLRequestMessagesGetPeerDialogs extends TLMethod {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0x2d9776b9;

    private TLVector peers;

    /**
     * Instantiates a new TL request messages get chats.
     */
    public TLRequestMessagesGetPeerDialogs() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

    public TLMessagesPeerDialogs deserializeResponse(InputStream stream, TLContext context)
            throws IOException {
        final TLObject res = StreamingUtils.readTLObject(stream, context);
        if (res == null) {
            throw new IOException("Unable to parse response");
        }
        if ((res instanceof TLMessagesPeerDialogs)) {
            return (TLMessagesPeerDialogs) res;
        }
        throw new IOException("Incorrect response type. Expected " + TLMessagesPeerDialogs.class.getName() + ", got: " + res.getClass().getCanonicalName());
    }

    public TLVector getPeers() {
        return peers;
    }

    public void setPeers(TLVector peers) {
        this.peers = peers;
    }

    public void serializeBody(OutputStream stream)
            throws IOException {
        StreamingUtils.writeTLVector(peers, stream);
    }

    public void deserializeBody(InputStream stream, TLContext context)
            throws IOException {
        peers = StreamingUtils.readTLVector(stream, context, TLAbsInputPeer.class);
    }

    public String toString() {
        return "messages.getPeerDialogs#2d9776b9";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy