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

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

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

import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import org.telegram.tl.TLIntVector;
import org.telegram.tl.TLMethod;

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

/**
 * The type TL request contacts export card.
 */
public class TLRequestContactsExportCard extends TLMethod {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0x84e53737;

    /**
     * Instantiates a new TL request contacts export card.
     */
    public TLRequestContactsExportCard() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

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

    public String toString() {
        return "contacts.exportCard#84e53737";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy