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

org.telegram.api.update.TLUpdateUserPhone Maven / Gradle / Ivy

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

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

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

/**
 * The type TL update user phone.
 */
public class TLUpdateUserPhone extends TLAbsUpdate {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0x12b9417b;
    private int userId;
    private String phone;

    /**
     * Instantiates a new TL update user phone.
     */
    public TLUpdateUserPhone() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

    public int getUserId() {
        return userId;
    }

    public String getPhone() {
        return phone;
    }

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

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

    public String toString() {
        return "updateUserPhone#12b9417b";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy