yellowgrid-api-ts 3.2.30-dev.0 → 3.2.31-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/VERSION +1 -1
- package/api.ts +3720 -8
- package/base.ts +24 -0
- package/common.ts +38 -1
- package/configuration.ts +18 -24
- package/dist/api.d.ts +3720 -8
- package/dist/api.js +371 -4
- package/dist/base.d.ts +24 -0
- package/dist/base.js +19 -0
- package/dist/common.d.ts +37 -0
- package/dist/common.js +37 -0
- package/dist/configuration.d.ts +17 -24
- package/dist/configuration.js +1 -1
- package/docs/ServicesApi.md +2 -2
- package/openapitools.json +1 -1
- package/package.json +1 -1
- package/docs/IncidentDTO.md +0 -35
- package/docs/IncidentRequestDTO.md +0 -25
- package/docs/IncidentSubscriptionModel.md +0 -23
- package/docs/IncidentUpdateDTO.md +0 -27
- package/docs/IncidentUpdateEntity.md +0 -29
- package/docs/IncidentUpdateRequestDTO.md +0 -23
- package/docs/NumberPortDTO.md +0 -51
- package/docs/NumberPortEntity.md +0 -47
- package/docs/NumberPortModel.md +0 -51
- package/docs/NumberPortRangeDTO.md +0 -33
- package/docs/NumberPortRangeRequestDTO.md +0 -27
- package/docs/NumberPortingApi.md +0 -658
- package/docs/NumberPortsModel.md +0 -27
- package/docs/SupportTicketModel.md +0 -41
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# SupportTicketModel
|
|
2
|
-
|
|
3
|
-
Telephony Support Ticket
|
|
4
|
-
|
|
5
|
-
## Properties
|
|
6
|
-
|
|
7
|
-
Name | Type | Description | Notes
|
|
8
|
-
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**id** | **number** | Ticket ID | [optional] [default to undefined]
|
|
10
|
-
**status** | **string** | Ticket status | [optional] [default to undefined]
|
|
11
|
-
**statusId** | **number** | Ticket status ID | [optional] [default to undefined]
|
|
12
|
-
**subject** | **string** | Ticket subject | [optional] [default to undefined]
|
|
13
|
-
**supportEmail** | **string** | Support email address | [optional] [default to undefined]
|
|
14
|
-
**toEmails** | **Array<string>** | Recipient emails | [optional] [default to undefined]
|
|
15
|
-
**description** | **string** | Ticket description (HTML) | [optional] [default to undefined]
|
|
16
|
-
**descriptionText** | **string** | Ticket description (plain text) | [optional] [default to undefined]
|
|
17
|
-
**createdAt** | **string** | Creation timestamp | [optional] [default to undefined]
|
|
18
|
-
**attachments** | [**Array<AttachmentModel>**](AttachmentModel.md) | Attachments | [optional] [default to undefined]
|
|
19
|
-
**conversations** | [**Array<ConversationModel>**](ConversationModel.md) | Conversations | [optional] [default to undefined]
|
|
20
|
-
|
|
21
|
-
## Example
|
|
22
|
-
|
|
23
|
-
```typescript
|
|
24
|
-
import { SupportTicketModel } from 'yellowgrid-api-ts';
|
|
25
|
-
|
|
26
|
-
const instance: SupportTicketModel = {
|
|
27
|
-
id,
|
|
28
|
-
status,
|
|
29
|
-
statusId,
|
|
30
|
-
subject,
|
|
31
|
-
supportEmail,
|
|
32
|
-
toEmails,
|
|
33
|
-
description,
|
|
34
|
-
descriptionText,
|
|
35
|
-
createdAt,
|
|
36
|
-
attachments,
|
|
37
|
-
conversations,
|
|
38
|
-
};
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|