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

com.pengrad.telegrambot.model.VideoChatParticipantsInvited Maven / Gradle / Ivy

There is a newer version: 7.11.0
Show newest version
package com.pengrad.telegrambot.model;

import java.io.Serializable;
import java.util.List;
import java.util.Objects;

/**
 * Stas Parshin
 * 10 March 2021
 */
public class VideoChatParticipantsInvited implements Serializable {
    private final static long serialVersionUID = 0L;

    private List users;

    public List users() {
        return users;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        VideoChatParticipantsInvited that = (VideoChatParticipantsInvited) o;
        return Objects.equals(users, that.users);
    }

    @Override
    public int hashCode() {
        return Objects.hash(users);
    }

    @Override
    public String toString() {
        return "VideoChatParticipantsInvited{" +
                "users=" + users +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy