package com.ifpdos.factorytest.entity;

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

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

    @SerializedName("value")
    public String value;

    public StringValueBody(String str) {
        this.value = str;
    }

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