org.telegram.api.functions.account.TLRequestGetTmpPassword Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
package org.telegram.api.functions.account;
import org.telegram.api.account.TLAccountTmpPassword;
import org.telegram.tl.*;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* @author Ruben Bermudez
* @version 1.0
* @brief TODO
* @date 08 of August of 2016
*/
public class TLRequestGetTmpPassword extends TLMethod {
public static final int CLASS_ID = 0x4a82327e;
private TLBytes passwordHash;
private int period;
public TLRequestGetTmpPassword() {
super();
}
@Override
public int getClassId() {
return CLASS_ID;
}
@Override
public TLAccountTmpPassword 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 TLAccountTmpPassword)) {
return (TLAccountTmpPassword) res;
}
throw new IOException("Incorrect response type. Expected " + TLAccountTmpPassword.class.getCanonicalName() +
", got: " + res.getClass().getCanonicalName());
}
@Override
public void serializeBody(OutputStream stream) throws IOException {
StreamingUtils.writeTLBytes(passwordHash, stream);
StreamingUtils.writeInt(period, stream);
}
@Override
public void deserializeBody(InputStream stream, TLContext context) throws IOException {
passwordHash = StreamingUtils.readTLBytes(stream, context);
period = StreamingUtils.readInt(stream);
}
@Override
public String toString() {
return "account.getTmpPassword#4a82327e";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy