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

com.pengrad.telegrambot.model.stars.partner.TransactionPartnerTelegramAds Maven / Gradle / Ivy

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

import java.util.Objects;

public class TransactionPartnerTelegramAds extends TransactionPartner {

    public final static String TYPE = "telegram_ads";

    public TransactionPartnerTelegramAds() {
        super(TYPE);
    }


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

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

    @Override
    public String toString() {
        return "TransactionPartnerTelegramAds{" +
                "type='" + type() + "\'" +
                '}';
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy