Class TaskAnchor
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.comment.TaskAnchor
-
public abstract class TaskAnchor extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Authorauthor()static TaskAnchorcreate(Map<String,com.google.gson.JsonElement> properties, int id, int version, String text, Author author, long createdDate, long updatedDate, PermittedOperations permittedOperations, String type)abstract longcreatedDate()abstract intid()abstract PermittedOperationspermittedOperations()abstract Map<String,com.google.gson.JsonElement>properties()abstract Stringtext()abstract Stringtype()abstract longupdatedDate()abstract intversion()
-
-
-
Method Detail
-
id
public abstract int id()
-
version
public abstract int version()
-
text
@Nullable public abstract String text()
-
author
public abstract Author author()
-
createdDate
public abstract long createdDate()
-
updatedDate
public abstract long updatedDate()
-
permittedOperations
@Nullable public abstract PermittedOperations permittedOperations()
-
type
@Nullable public abstract String type()
-
create
public static TaskAnchor create(Map<String,com.google.gson.JsonElement> properties, int id, int version, String text, Author author, long createdDate, long updatedDate, PermittedOperations permittedOperations, String type)
-
-