googlephotos
Version:
Library to make working with the Google Photos API easy
18 lines (14 loc) • 342 B
JavaScript
;
class SharedAlbumOptions {
constructor(isCollaborative, isCommentable) {
this.isCollaborative = isCollaborative;
this.isCommentable = isCommentable;
}
toJson() {
return {
isCollaborative: this.isCollaborative,
isCommentable: this.isCommentable,
};
}
}
module.exports = SharedAlbumOptions;