org.telegram.api.input.paymentapi.paymentcredentials.TLInputPaymentCredentials 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.input.paymentapi.paymentcredentials;
import org.telegram.api.TLDataJSON;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* @author Ruben Bermudez
* @version 1.0
*/
public class TLInputPaymentCredentials extends TLAbsInputPaymentCredentials {
public static final int CLASS_ID = 0x3417d728;
private static final int FLAG_SAVE = 0x00000001; // 0
private int flags;
private TLDataJSON data;
public TLInputPaymentCredentials() {
super();
}
public TLDataJSON getData() {
return data;
}
public void setData(TLDataJSON data) {
this.data = data;
}
public void setSave(boolean save) {
if (save) {
flags |= FLAG_SAVE;
} else {
flags &= ~FLAG_SAVE;
}
}
public boolean isSave() {
return (flags & FLAG_SAVE) != 0;
}
@Override
public int getClassId() {
return CLASS_ID;
}
@Override
public void serializeBody(OutputStream stream) throws IOException {
StreamingUtils.writeInt(flags, stream);
StreamingUtils.writeTLObject(data, stream);
}
@Override
public void deserializeBody(InputStream stream, TLContext context) throws IOException {
flags = StreamingUtils.readInt(stream);
data = StreamingUtils.readTLObject(stream, context, TLDataJSON.class);
}
@Override
public String toString() {
return "inputPaymentCredentials#3417d728";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy