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

com.viber.bot.event.incoming.IncomingSeenEvent Maven / Gradle / Ivy

Go to download

Use this library to communicate with the Viber API to develop a bot for https://developers.viber.com/.

There is a newer version: 1.0.11
Show newest version
package com.viber.bot.event.incoming;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.viber.bot.event.Event;

import javax.annotation.Nonnull;
import javax.annotation.concurrent.Immutable;

import static com.viber.bot.Preconditions.checkNotEmpty;

@Immutable
public class IncomingSeenEvent extends IncomingEvent {

    private final String userId;
    private final Long token;

    @JsonCreator
    IncomingSeenEvent(final @JsonProperty("user_id") @Nonnull String userId,
                      final @JsonProperty("message_token") long token,
                      final @JsonProperty("timestamp") long timestamp) {
        super(Event.MESSAGE_SEEN, timestamp);
        this.userId = checkNotEmpty(userId);
        this.token = token;
    }

    public Long getToken() {
        return token;
    }

    public String getUserId() {
        return userId;
    }

    @Override
    public boolean equals(final Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        if (!super.equals(o)) return false;

        final IncomingSeenEvent that = (IncomingSeenEvent) o;

        if (userId != null ? !userId.equals(that.userId) : that.userId != null) return false;
        return token != null ? token.equals(that.token) : that.token == null;
    }

    @Override
    public int hashCode() {
        int result = super.hashCode();
        result = 31 * result + (userId != null ? userId.hashCode() : 0);
        result = 31 * result + (token != null ? token.hashCode() : 0);
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy