package com.ifpdos.factorytest.entity;

import com.google.gson.annotations.SerializedName;
import java.util.List;
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;

/* JADX INFO: loaded from: classes.dex */
public class ListIntValueBody {

    @SerializedName("value")
    public List<Integer> value;

    public ListIntValueBody(List<Integer> list) {
        this.value = list;
    }

    public String toString() {
        return "ListIntValueBody{value=" + this.value + AbstractJsonLexerKt.END_OBJ;
    }
}
