org.telegram.api.page.block.TLPageBlockSlideshow 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
The newest version!
package org.telegram.api.page.block;
import org.telegram.api.richtext.TLAbsRichText;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import org.telegram.tl.TLVector;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* @author Ruben Bermudez
* @version 1.0
*/
public class TLPageBlockSlideshow extends TLAbsPageBlock {
public static final int CLASS_ID = 0x130c8963;
private TLVector items;
private TLAbsRichText caption;
public TLPageBlockSlideshow() {
super();
}
@Override
public int getClassId() {
return CLASS_ID;
}
public TLVector getItems() {
return items;
}
public TLAbsRichText getCaption() {
return caption;
}
@Override
public void serializeBody(OutputStream stream) throws IOException {
StreamingUtils.writeTLVector(items, stream);
StreamingUtils.writeTLObject(caption, stream);
}
@Override
public void deserializeBody(InputStream stream, TLContext context) throws IOException {
items = StreamingUtils.readTLVector(stream, context, TLAbsPageBlock.class);
caption = StreamingUtils.readTLObject(stream, context, TLAbsRichText.class);
}
@Override
public String toString() {
return "pageBlockSlideshow#130c8963";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy