com.nulabinc.backlog4j.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backlog4j Show documentation
Show all versions of backlog4j Show documentation
Backlog4j is a Backlog binding library for Java.
package com.nulabinc.backlog4j;
import java.util.Date;
import java.util.List;
/**
* The interface for Backlog group data.
*
* @author nulab-inc
*/
public interface Group {
long getId();
String getName();
List getMembers();
long getDisplayOrder();
User getCreatedUser();
Date getCreated();
User getUpdatedUser();
Date getUpdated();
}