io.github.thunderz99.cosmos.dto.UniqueKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-cosmos Show documentation
Show all versions of java-cosmos Show documentation
A lightweight Azure CosmosDB client for Java
package io.github.thunderz99.cosmos.dto;
import java.util.List;
/**
* DTO class representing a uniqueKey in json path. e.g. ["/address/city", "/_uniqueKey1"].
*/
public class UniqueKey extends RecordData {
public List paths;
public UniqueKey(){
}
public UniqueKey(List paths){
this.paths = paths;
}
/**
* Getter for paths
* @return paths
*/
public List getPaths() {
return paths;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy