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

apoc.result.IndexConstraintRelationshipInfo Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
package apoc.result;

import java.util.List;

/**
 * Created by alberto.delazzari on 04/07/17.
 */
public class IndexConstraintRelationshipInfo {

    public final String name;

    public final String type;

    public final List properties;

    public final String status;
    
    public final Object relationshipType;

    public IndexConstraintRelationshipInfo(String name, String schemaType, List properties, String status, Object relationshipType) {
        this.name = name;
        this.type = schemaType;
        this.properties = properties;
        this.status = status;
        this.relationshipType = relationshipType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy