src/app/modules/shared/interfaces/announcement.ts
Announcement interface
attachments |
attachments: |
Type : object[]
|
Announcement attachements |
createdDate |
createdDate: |
Type : string
|
Announcement creation date |
description |
description: |
Type : string
|
Announcement description |
from |
from: |
Type : string
|
Announcement from |
links |
links: |
Type : string[]
|
Announcement attached links |
read |
read: |
Type : boolean
|
Announcement is read or not |
title |
title: |
Type : string
|
Announcement title |
type |
type: |
Type : string
|
Announcement type Data |
export interface Announcement {
/**
* Announcement type Data
*/
type: string;
/**
* Announcement title
*/
title: string;
/**
* Announcement from
*/
from: string;
/**
* Announcement is read or not
*/
read: boolean;
/**
* Announcement description
*/
description: string;
/**
* Announcement attached links
*/
links: string[];
/**
* Announcement attachements
*/
attachments: object[];
/**
* Announcement creation date
*/
createdDate: string;
}