Skip to content

Files

Latest commit

e44d477 · Apr 4, 2025

History

History
38 lines (31 loc) · 1.4 KB

AnnouncementResponse.md

File metadata and controls

38 lines (31 loc) · 1.4 KB

LaunchDarklyApi::AnnouncementResponse

Properties

Name Type Description Notes
_id String The ID of the announcement
is_dismissible Boolean true if the announcement is dismissible
title String The title of the announcement
message String The message of the announcement
start_time Integer The start time of the announcement. This is a Unix timestamp in milliseconds.
end_time Integer The end time of the announcement. This is a Unix timestamp in milliseconds. [optional]
severity String The severity of the announcement
_status String The status of the announcement
_access AnnouncementAccessRep [optional]
_links AnnouncementResponseLinks

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::AnnouncementResponse.new(
  _id: 1234567890,
  is_dismissible: true,
  title: System Maintenance Notice,
  message: **Important Update:**

Please be aware of the upcoming maintenance scheduled for *October 31st, 2024*. The system will be unavailable from **12:00 AM** to **4:00 AM**.,
  start_time: 1731439812,
  end_time: 1731439880,
  severity: null,
  _status: null,
  _access: null,
  _links: null
)