package com.benq.platform.utils;

import androidx.annotation.Keep;
import com.google.gson.annotations.SerializedName;

/* JADX INFO: loaded from: classes.dex */
@Keep
public final class ValueIntBody {

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

    public ValueIntBody(int i2) {
        this.value = i2;
    }

    public static /* synthetic */ ValueIntBody copy$default(ValueIntBody valueIntBody, int i2, int i3, Object obj) {
        if ((i3 & 1) != 0) {
            i2 = valueIntBody.value;
        }
        return valueIntBody.copy(i2);
    }

    public final int component1() {
        return this.value;
    }

    public final ValueIntBody copy(int i2) {
        return new ValueIntBody(i2);
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        return (obj instanceof ValueIntBody) && this.value == ((ValueIntBody) obj).value;
    }

    public final int getValue() {
        return this.value;
    }

    public int hashCode() {
        return Integer.hashCode(this.value);
    }

    public String toString() {
        return "ValueIntBody(value=" + this.value + ")";
    }
}
