Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | 1x 1x 1x | import { Moment } from 'moment';
import { Util } from '../internal/Util';
import { User } from './User';
/**
* Represents a calendar event.
* @module Announcement
*/
export class Announcement {
public static fromRest(data: any) {
Util.assertHasProperties(data, 'id', 'author', 'text', 'timestamp');
const ret = new Announcement();
Util.setProperties(ret, data, 'id', 'text');
Util.setDateProperties(ret, data, 'timestamp');
if (!Util.isEmpty(data.author)) {
ret.author = User.fromRest(data.author);
}
return ret;
}
/** The unique announcement ID. */
public id: string;
/** The announcement's author. */
public author: User;
/** The text of the announcement. */
public text: string;
/** The announcement time. */
public timestamp: Moment;
public toJSON() {
return this;
}
}
|