io.github.dft.zohocreator.model.dataapi.DataId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zoho-creator Show documentation
Show all versions of zoho-creator Show documentation
zoho-creator API using JDK 11
The newest version!
package io.github.dft.zohocreator.model.dataapi;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class DataId {
@JsonProperty("ID")
private String id;
}