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

io.github.thunderz99.cosmos.dto.CosmosContainerResponse Maven / Gradle / Ivy

There is a newer version: 0.7.11
Show newest version
package io.github.thunderz99.cosmos.dto;

public class CosmosContainerResponse extends RecordData {

    public String name;
    UniqueKeyPolicy uniqueKeyPolicy = new UniqueKeyPolicy();


    public CosmosContainerResponse() {
    }

    public CosmosContainerResponse(String name) {
        this.name = name;
    }
    
    public CosmosContainerResponse(String name, UniqueKeyPolicy policy) {
        this.name = name;
        this.uniqueKeyPolicy = policy;
    }

    /**
     * Get the uniqueKeyPolicy associated with this container / collection
     *
     * @return uniqueKeyPolicy
     */
    public UniqueKeyPolicy getUniqueKeyPolicy() {
        return uniqueKeyPolicy;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy