
com.github.davidmoten.odata.client.ODataValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-runtime Show documentation
Show all versions of odata-client-runtime Show documentation
OData client runtime for use with generated code
The newest version!
package com.github.davidmoten.odata.client;
import com.fasterxml.jackson.annotation.JacksonInject;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl;
public class ODataValue {
@JacksonInject
@JsonIgnore
private UnmappedFieldsImpl unmappedFields;
@JsonProperty("value")
private T value;
public UnmappedFields unmappedFields() {
return unmappedFields;
}
public T value() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy