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

com.arangodb.entity.EdgeDefinitionEntity Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
package com.arangodb.entity;

import java.util.List;

import com.google.gson.annotations.SerializedName;

public class EdgeDefinitionEntity {

  String collection;
  List from;
  List to;

  public String getCollection() {
    return collection;
  }

  public void setCollection(String collection) {
    this.collection = collection;
  }

  public List getFrom() {
    return from;
  }

  public void setFrom(List from) {
    this.from = from;
  }

  public List getTo() {
    return to;
  }

  public void setTo(List to) {
    this.to = to;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy