Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Commit

Permalink
Fixes #194: Add backdated time field to album
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrunk90 committed Feb 14, 2016
1 parent 63e0140 commit a8fe406
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ public class Album extends FacebookObject {

private String id;

private Date backdatedTime;

private boolean canUpload;

private int count;
Expand Down Expand Up @@ -56,6 +58,10 @@ public String getId() {
return id;
}

public Date getBackdatedTime() {
return backdatedTime;
}

public boolean canUpload() {
return canUpload;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ abstract class AlbumMixin extends FacebookObjectMixin {
@JsonProperty("id")
String id;

@JsonProperty("backdated_time")
Date backdatedTime;

@JsonProperty("can_upload")
boolean canUpload;

Expand Down

0 comments on commit a8fe406

Please sign in to comment.