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

org.telegram.api.photos.TLAbsPhotos Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
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