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

org.telegram.api.contact.TLContact Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
/**
 * This is the source code of Telegram Bot v. 2.0
 * It is licensed under GNU GPL v. 3 or later.
 * You should have received a copy of the license in this archive (see LICENSE).
 *
 * Copyright Ruben Bermudez, 13/11/14.
 */
package org.telegram.api.contact;

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;

/**
 * Represent contact information
 * @author Ruben Bermudez
 * @version 2.0
 * @date 02 of May of 2015
 */
public class TLContact extends TLObject {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0xf911c994;

    private int userId; ///< User id
    private boolean mutual; ///< True if the user and current one are mutual contacts

    /**
     * Instantiates a new TL contact.
     */
    public TLContact() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

    /**
     * Gets user id.
     *
     * @return the user id
     */
    public int getUserId() {
        return this.userId;
    }

    /**
     * Sets user id.
     *
     * @param value the value
     */
    public void setUserId(int value) {
        this.userId = value;
    }

    /**
     * Gets mutual.
     *
     * @return the mutual
     */
    public boolean getMutual() {
        return this.mutual;
    }

    /**
     * Sets mutual.
     *
     * @param value the value
     */
    public void setMutual(boolean value) {
        this.mutual = value;
    }

    public void serializeBody(OutputStream stream)
            throws IOException {
        StreamingUtils.writeInt(this.userId, stream);
        StreamingUtils.writeTLBool(this.mutual, stream);
    }

    public void deserializeBody(InputStream stream, TLContext context)
            throws IOException {
        this.userId = StreamingUtils.readInt(stream);
        this.mutual = StreamingUtils.readTLBool(stream);
    }

    public String toString() {
        return "contact#f911c994";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy