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

com.numeralasia.payment.model.midtrans.MidTransactionItem Maven / Gradle / Ivy

Go to download

Payment-Model Model Class for representating an object for payment through midtrans, this is used for accessing model api if you use Numeral Asia payment service

There is a newer version: 1.0.49
Show newest version
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package com.numeralasia.payment.model.midtrans;

import lombok.Data;

@Data
public class MidTransactionItem {
    String id;
    String name;
    Long price;
    Integer quantity;

    public MidTransactionItem() {
    }

    public MidTransactionItem(String id, String name, Long price, Integer quantity) {
        this.id = id;
        this.name = name;
        this.price = price;
        this.quantity = quantity;
    }

    public boolean equals(Object o) {
        if (this == o) {
            return true;
        } else if (o != null && this.getClass() == o.getClass()) {
            MidTransactionItem that;
            label57: {
                that = (MidTransactionItem)o;
                if (this.id != null) {
                    if (this.id.equals(that.id)) {
                        break label57;
                    }
                } else if (that.id == null) {
                    break label57;
                }

                return false;
            }

            label50: {
                if (this.name != null) {
                    if (this.name.equals(that.name)) {
                        break label50;
                    }
                } else if (that.name == null) {
                    break label50;
                }

                return false;
            }

            if (this.price != null) {
                if (!this.price.equals(that.price)) {
                    return false;
                }
            } else if (that.price != null) {
                return false;
            }

            if (this.quantity != null) {
                if (!this.quantity.equals(that.quantity)) {
                    return false;
                }
            } else if (that.quantity != null) {
                return false;
            }

            return true;
        } else {
            return false;
        }
    }

    public int hashCode() {
        int result = this.id != null ? this.id.hashCode() : 0;
        result = 31 * result + (this.name != null ? this.name.hashCode() : 0);
        result = 31 * result + (this.price != null ? this.price.hashCode() : 0);
        result = 31 * result + (this.quantity != null ? this.quantity.hashCode() : 0);
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy