mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
more api documentation
This commit is contained in:
@@ -17,19 +17,19 @@ import com.wordnik.swagger.annotations.ApiProperty;
|
||||
@ApiClass("List of entries with some metadata")
|
||||
public class Entries implements Serializable {
|
||||
|
||||
@ApiProperty("Name of the feed or the category requested")
|
||||
@ApiProperty("name of the feed or the category requested")
|
||||
private String name;
|
||||
|
||||
@ApiProperty("Error or warning message")
|
||||
@ApiProperty("error or warning message")
|
||||
private String message;
|
||||
|
||||
@ApiProperty("TImes the server tried to refresh the feed and failed")
|
||||
@ApiProperty("times the server tried to refresh the feed and failed")
|
||||
private int errorCount;
|
||||
|
||||
@ApiProperty("List generation Timestamp")
|
||||
@ApiProperty("list generation Timestamp")
|
||||
private long timestamp;
|
||||
|
||||
@ApiProperty("List of entries")
|
||||
@ApiProperty("list of entries")
|
||||
private List<Entry> entries = Lists.newArrayList();
|
||||
|
||||
public String getName() {
|
||||
|
||||
Reference in New Issue
Block a user