Class Comments
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.comment.Comments
-
- All Implemented Interfaces:
ErrorsHolder,LinksHolder
public abstract class Comments extends Object implements ErrorsHolder, LinksHolder
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Anchoranchor()abstract Authorauthor()abstract List<Comments>comments()static Commentscreate(Map<String,com.google.gson.JsonElement> properties, int id, int version, String text, Author author, long createdDate, long updatedDate, List<Comments> comments, List<Task> tasks, Anchor anchor, Link link, Links links, PermittedOperations permittedOperations, List<Error> errors)abstract longcreatedDate()abstract intid()abstract Linklink()abstract PermittedOperationspermittedOperations()abstract Map<String,com.google.gson.JsonElement>properties()abstract List<Task>tasks()abstract Stringtext()abstract longupdatedDate()abstract intversion()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.cdancy.bitbucket.rest.domain.common.ErrorsHolder
errors
-
Methods inherited from interface com.cdancy.bitbucket.rest.domain.common.LinksHolder
links
-
-
-
-
Method Detail
-
id
public abstract int id()
-
version
public abstract int version()
-
text
@Nullable public abstract String text()
-
author
@Nullable public abstract Author author()
-
createdDate
public abstract long createdDate()
-
updatedDate
public abstract long updatedDate()
-
anchor
@Nullable public abstract Anchor anchor()
-
link
@Nullable public abstract Link link()
-
permittedOperations
@Nullable public abstract PermittedOperations permittedOperations()
-
create
public static Comments create(Map<String,com.google.gson.JsonElement> properties, int id, int version, String text, Author author, long createdDate, long updatedDate, List<Comments> comments, List<Task> tasks, Anchor anchor, Link link, Links links, PermittedOperations permittedOperations, List<Error> errors)
-
-