File

src/app/modules/shared/interfaces/announcement.ts

Description

Announcement interface

Index

Properties

Properties

attachments
attachments: object[]
Type : object[]

Announcement attachements

createdDate
createdDate: string
Type : string

Announcement creation date

description
description: string
Type : string

Announcement description

from
from: string
Type : string

Announcement from

links
links: string[]
Type : string[]

Announcement attached links

read
read: boolean
Type : boolean

Announcement is read or not

title
title: string
Type : string

Announcement title

type
type: string
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;
}

results matching ""

    No results matching ""