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

org.telegram.api.functions.contacts.TLRequestContactsGetStatuses Maven / Gradle / Ivy

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

import org.telegram.api.contact.TLContactStatus;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import org.telegram.tl.TLMethod;
import org.telegram.tl.TLVector;

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

/**
 * The type TL request contacts get statuses.
 */
public class TLRequestContactsGetStatuses extends TLMethod> {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0xc4a353ee;

    /**
     * Instantiates a new TL request contacts get statuses.
     */
    public TLRequestContactsGetStatuses() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

    public TLVector deserializeResponse(InputStream stream, TLContext context)
            throws IOException {
        return StreamingUtils.readTLVector(stream, context);
    }

    public String toString() {
        return "contacts.getStatuses#c4a353ee";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy