Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* Geographic Site Management
* ** TMF API Reference : TMF 674 - Place - Geographic Site Management ### August 2021 This API covers the operations to manage (create, read, delete) sites that can be associated to a customer, an account, a service delivery or other entities. It defines a Site as a convenience class that allows to easily refer to places important to other entities, where a geographic place is the entity that can answer the question “where?”, allowing to determine where things are in relation to the earth\'s surface, and can be represented either in a textual structured way (geographic address) or as a geometry referred to a spatial reference system (geographic location). ### Resources - GeographicSite - Hub ### Operations Geographic Site API performs the following operations : - Retrieve a geographic site or a collection of geographic sites - Create a new site - Update a geographic site - Delete a geographic site - Notify events on geographic site Copyright © TM Forum 2021. All Rights Reserved
*
* The version of the OpenAPI document: 5.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Entity } from './entity';
export interface BaseEvent extends Entity {
event?: object;
/**
* The identifier of the notification.
*/
eventId?: string;
/**
* Time of the event occurrence.
*/
eventTime?: string;
/**
* The type of the notification.
*/
eventType?: string;
/**
* The correlation id for this event.
*/
correlationId?: string;
/**
* The domain of the event.
*/
domain?: string;
/**
* The title of the event.
*/
title?: string;
/**
* An explanatory of the event.
*/
description?: string;
/**
* A priority.
*/
priority?: string;
/**
* The time the event occured.
*/
timeOcurred?: string;
}