Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.55 KB

File metadata and controls

39 lines (32 loc) · 1.55 KB

AnnouncementResponse

Announcement response

Properties

Name Type Description Notes
_id string The ID of the announcement [default to undefined]
isDismissible boolean true if the announcement is dismissible [default to undefined]
title string The title of the announcement [default to undefined]
message string The message of the announcement [default to undefined]
startTime number The start time of the announcement. This is a Unix timestamp in milliseconds. [default to undefined]
endTime number The end time of the announcement. This is a Unix timestamp in milliseconds. [optional] [default to undefined]
severity string The severity of the announcement [default to undefined]
_status string The status of the announcement [default to undefined]
_access AnnouncementAccessRep [optional] [default to undefined]
_links AnnouncementResponseLinks [default to undefined]

Example

import { AnnouncementResponse } from 'launchdarkly-api-typescript';

const instance: AnnouncementResponse = {
    _id,
    isDismissible,
    title,
    message,
    startTime,
    endTime,
    severity,
    _status,
    _access,
    _links,
};

[Back to Model list] [Back to API list] [Back to README]