org.telegram.api.photos.TLAbsPhotos 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.photos;
import org.telegram.api.photo.TLAbsPhoto;
import org.telegram.api.user.TLAbsUser;
import org.telegram.tl.TLObject;
import org.telegram.tl.TLVector;
/**
* The type TL abs photos.
*/
public abstract class TLAbsPhotos extends TLObject {
/**
* The Photos.
*/
protected TLVector photos;
/**
* The Users.
*/
protected TLVector users;
/**
* Instantiates a new TL abs photos.
*/
protected TLAbsPhotos() {
super();
}
/**
* Gets photos.
*
* @return the photos
*/
public TLVector getPhotos() {
return this.photos;
}
/**
* Sets photos.
*
* @param value the value
*/
public void setPhotos(TLVector value) {
this.photos = value;
}
/**
* Gets users.
*
* @return the users
*/
public TLVector getUsers() {
return this.users;
}
/**
* Sets users.
*
* @param value the value
*/
public void setUsers(TLVector value) {
this.users = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy