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

com.silanis.esl.sdk.CustomFieldValue Maven / Gradle / Ivy

The newest version!
package com.silanis.esl.sdk;

public class CustomFieldValue {
    private String id;
    private String value;

    public void setId( String id ) {
        this.id = id;
    }

    public String getId() {
        return id;
    }

    public void setValue( String value ) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy