announcementActiveTimelineStatus method

Future<Map<String, dynamic>> announcementActiveTimelineStatus()
inherited

announcementActiveTimelineStatus -> /v1/announcement/active/timeline

Requests the current state of the active announcement timeline.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "object",
  "required": []
}

Implementation

Future<Map<String, dynamic>> announcementActiveTimelineStatus() async {
  String url = '/v1/announcement/active/timeline';

  return await call('get', url, httpAccept: 'application/json');
}