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

infobip.api.model.nc.notify.NumberContextResponseDetails Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
package infobip.api.model.nc.notify;

import infobip.api.model.Status;

/**
 * This is a generated class and is not intended for modification!
 */
public class NumberContextResponseDetails {
    private String to;
    private Status status;
    private String messageId;

    public NumberContextResponseDetails() {
    }

    public String getTo() {
        return this.to;
    }

    public NumberContextResponseDetails setTo(String to) {
        this.to = to;
        return this;
    }

    public Status getStatus() {
        return this.status;
    }

    public NumberContextResponseDetails setStatus(Status status) {
        this.status = status;
        return this;
    }

    public String getMessageId() {
        return this.messageId;
    }

    public NumberContextResponseDetails setMessageId(String messageId) {
        this.messageId = messageId;
        return this;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }

        NumberContextResponseDetails o = (NumberContextResponseDetails)obj;
        if (this.to == null) {
            if (o.to != null){
                return false;
            }
        } else if (!this.to.equals(o.to)) {
            return false;
        }
        if (this.status == null) {
            if (o.status != null){
                return false;
            }
        } else if (!this.status.equals(o.status)) {
            return false;
        }
        if (this.messageId == null) {
            if (o.messageId != null){
                return false;
            }
        } else if (!this.messageId.equals(o.messageId)) {
            return false;
        }

        return true;
    }

    @Override
    public String toString() {
        return "NumberContextResponseDetails{" +
            "to='" + to + "'" +
            ", status='" + status + "'" +
            ", messageId='" + messageId + "'" +
            '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy