package com.ifpdos.factorytest.udi;

import com.google.gson.annotations.SerializedName;
import kotlin.Metadata;

/* JADX INFO: compiled from: ProtocolDefine.kt */
/* JADX INFO: loaded from: classes.dex */
@Metadata(d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003¢\u0006\u0002\u0010\u0005J\t\u0010\t\u001a\u00020\u0003HÆ\u0003J\t\u0010\n\u001a\u00020\u0003HÆ\u0003J\u001d\u0010\u000b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\f\u001a\u00020\r2\b\u0010\u000e\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u000f\u001a\u00020\u0003HÖ\u0001J\t\u0010\u0010\u001a\u00020\u0011HÖ\u0001R\u0016\u0010\u0002\u001a\u00020\u00038\u0006X\u0087\u0004¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007R\u0016\u0010\u0004\u001a\u00020\u00038\u0006X\u0087\u0004¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\u0007¨\u0006\u0012"}, d2 = {"Lcom/ifpdos/factorytest/udi/VolumeRangeBody;", "", "max", "", "min", "(II)V", "getMax", "()I", "getMin", "component1", "component2", "copy", "equals", "", "other", "hashCode", "toString", "", "app_generalRelease"}, k = 1, mv = {1, 8, 0}, xi = 48)
public final /* data */ class VolumeRangeBody {

    @SerializedName("max")
    private final int max;

    @SerializedName("min")
    private final int min;

    public static /* synthetic */ VolumeRangeBody copy$default(VolumeRangeBody volumeRangeBody, int i, int i2, int i3, Object obj) {
        if ((i3 & 1) != 0) {
            i = volumeRangeBody.max;
        }
        if ((i3 & 2) != 0) {
            i2 = volumeRangeBody.min;
        }
        return volumeRangeBody.copy(i, i2);
    }

    /* JADX INFO: renamed from: component1, reason: from getter */
    public final int getMax() {
        return this.max;
    }

    /* JADX INFO: renamed from: component2, reason: from getter */
    public final int getMin() {
        return this.min;
    }

    public final VolumeRangeBody copy(int max, int min) {
        return new VolumeRangeBody(max, min);
    }

    public boolean equals(Object other) {
        if (this == other) {
            return true;
        }
        if (!(other instanceof VolumeRangeBody)) {
            return false;
        }
        VolumeRangeBody volumeRangeBody = (VolumeRangeBody) other;
        return this.max == volumeRangeBody.max && this.min == volumeRangeBody.min;
    }

    public int hashCode() {
        return (Integer.hashCode(this.max) * 31) + Integer.hashCode(this.min);
    }

    public String toString() {
        return "VolumeRangeBody(max=" + this.max + ", min=" + this.min + ")";
    }

    public VolumeRangeBody(int i, int i2) {
        this.max = i;
        this.min = i2;
    }

    public final int getMax() {
        return this.max;
    }

    public final int getMin() {
        return this.min;
    }
}
