org.molgenis.data.rest.EntityMetaRequest Maven / Gradle / Ivy
package org.molgenis.data.rest;
public class EntityMetaRequest
{
private String[] attributes;
private String[] expand;
public String[] getAttributes()
{
return attributes;
}
public void setAttributes(String[] attributes)
{
this.attributes = attributes;
}
public String[] getExpand()
{
return expand;
}
public void setExpand(String[] expand)
{
this.expand = expand;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy