@pidginhost/sdk 0.6.0 → 0.8.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.
Files changed (50) hide show
  1. package/.openapi-generator/FILES +39 -0
  2. package/CHANGELOG.md +7 -0
  3. package/README.md +115 -2
  4. package/api.ts +9095 -3388
  5. package/dist/api.d.ts +2569 -62
  6. package/dist/api.js +8153 -3040
  7. package/dist/esm/api.d.ts +2569 -62
  8. package/dist/esm/api.js +8135 -3026
  9. package/docs/ApiCredential.md +32 -0
  10. package/docs/Bucket.md +40 -0
  11. package/docs/CloudApi.md +1315 -134
  12. package/docs/DnsSourceEnum.md +13 -0
  13. package/docs/DomainAdd.md +28 -0
  14. package/docs/EmailApi.md +2828 -0
  15. package/docs/EmailService.md +44 -0
  16. package/docs/FloatingIPAuthorization.md +27 -0
  17. package/docs/FloatingIPAuthorizeRequest.md +20 -0
  18. package/docs/FloatingIPv4.md +32 -0
  19. package/docs/FloatingIPv4AuthorizeResponse.md +20 -0
  20. package/docs/FloatingIPv4Create.md +20 -0
  21. package/docs/FloatingIPv4UnauthorizeResponse.md +20 -0
  22. package/docs/FloatingIPv6.md +32 -0
  23. package/docs/FloatingIPv6AuthorizeResponse.md +20 -0
  24. package/docs/FloatingIPv6Create.md +20 -0
  25. package/docs/FloatingIPv6UnauthorizeResponse.md +20 -0
  26. package/docs/InboundRoute.md +34 -0
  27. package/docs/ModeEnum.md +11 -0
  28. package/docs/PaginatedApiCredentialList.md +26 -0
  29. package/docs/PaginatedEmailServiceList.md +26 -0
  30. package/docs/PaginatedFloatingIPAuthorizationList.md +26 -0
  31. package/docs/PaginatedFloatingIPv4List.md +26 -0
  32. package/docs/PaginatedFloatingIPv6List.md +26 -0
  33. package/docs/PaginatedInboundRouteList.md +26 -0
  34. package/docs/PaginatedSandboxAddressList.md +26 -0
  35. package/docs/PaginatedSendingDomainList.md +26 -0
  36. package/docs/PaginatedSmtpCredentialList.md +26 -0
  37. package/docs/PaginatedSuppressionEntryList.md +26 -0
  38. package/docs/PatchedEmailService.md +44 -0
  39. package/docs/PatchedInboundRoute.md +34 -0
  40. package/docs/PatchedSubscribe.md +20 -0
  41. package/docs/ReasonEnum.md +15 -0
  42. package/docs/SandboxAddress.md +26 -0
  43. package/docs/SendingDomain.md +42 -0
  44. package/docs/SendingDomainStatusEnum.md +17 -0
  45. package/docs/ServerProduct.md +8 -0
  46. package/docs/SmtpCredential.md +30 -0
  47. package/docs/Subscribe.md +20 -0
  48. package/docs/SuppressionEntry.md +28 -0
  49. package/docs/TierEnum.md +13 -0
  50. package/package.json +1 -1
@@ -0,0 +1,44 @@
1
+ # EmailService
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **number** | | [readonly] [default to undefined]
9
+ **tier** | **string** | | [readonly] [default to undefined]
10
+ **status** | [**StatusA57Enum**](StatusA57Enum.md) | | [readonly] [default to undefined]
11
+ **sandbox_mode** | **boolean** | | [readonly] [default to undefined]
12
+ **auto_suspended** | **boolean** | | [readonly] [default to undefined]
13
+ **auto_suspend_reason** | **string** | | [readonly] [default to undefined]
14
+ **msgs_sent_24h** | **number** | | [readonly] [default to undefined]
15
+ **msgs_sent_30d** | **number** | | [readonly] [default to undefined]
16
+ **bounce_rate_pct** | **string** | | [readonly] [default to undefined]
17
+ **complaint_rate_pct** | **string** | | [readonly] [default to undefined]
18
+ **dedicated_ip_addon** | **boolean** | | [readonly] [default to undefined]
19
+ **quota_monthly** | **string** | | [readonly] [default to undefined]
20
+ **price_monthly_eur** | **string** | | [readonly] [default to undefined]
21
+
22
+ ## Example
23
+
24
+ ```typescript
25
+ import { EmailService } from '@pidginhost/sdk';
26
+
27
+ const instance: EmailService = {
28
+ id,
29
+ tier,
30
+ status,
31
+ sandbox_mode,
32
+ auto_suspended,
33
+ auto_suspend_reason,
34
+ msgs_sent_24h,
35
+ msgs_sent_30d,
36
+ bounce_rate_pct,
37
+ complaint_rate_pct,
38
+ dedicated_ip_addon,
39
+ quota_monthly,
40
+ price_monthly_eur,
41
+ };
42
+ ```
43
+
44
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,27 @@
1
+ # FloatingIPAuthorization
2
+
3
+ Read-only authorization row for either v4 or v6 (shape is identical).
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **id** | **number** | | [readonly] [default to undefined]
10
+ **server_id** | **number** | | [readonly] [default to undefined]
11
+ **server_hostname** | **string** | | [readonly] [default to undefined]
12
+ **created_at** | **string** | | [readonly] [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { FloatingIPAuthorization } from '@pidginhost/sdk';
18
+
19
+ const instance: FloatingIPAuthorization = {
20
+ id,
21
+ server_id,
22
+ server_hostname,
23
+ created_at,
24
+ };
25
+ ```
26
+
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # FloatingIPAuthorizeRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **server_id** | **number** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { FloatingIPAuthorizeRequest } from '@pidginhost/sdk';
14
+
15
+ const instance: FloatingIPAuthorizeRequest = {
16
+ server_id,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,32 @@
1
+ # FloatingIPv4
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **number** | | [readonly] [default to undefined]
9
+ **address** | **string** | | [readonly] [default to undefined]
10
+ **gateway** | **string** | | [readonly] [default to undefined]
11
+ **prefix** | **number** | | [readonly] [default to undefined]
12
+ **label** | **string** | | [optional] [default to undefined]
13
+ **authorized_vm_count** | **number** | | [readonly] [default to undefined]
14
+ **created_at** | **string** | | [readonly] [default to undefined]
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import { FloatingIPv4 } from '@pidginhost/sdk';
20
+
21
+ const instance: FloatingIPv4 = {
22
+ id,
23
+ address,
24
+ gateway,
25
+ prefix,
26
+ label,
27
+ authorized_vm_count,
28
+ created_at,
29
+ };
30
+ ```
31
+
32
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # FloatingIPv4AuthorizeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **authorized** | **boolean** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { FloatingIPv4AuthorizeResponse } from '@pidginhost/sdk';
14
+
15
+ const instance: FloatingIPv4AuthorizeResponse = {
16
+ authorized,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # FloatingIPv4Create
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **label** | **string** | | [optional] [default to '']
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { FloatingIPv4Create } from '@pidginhost/sdk';
14
+
15
+ const instance: FloatingIPv4Create = {
16
+ label,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # FloatingIPv4UnauthorizeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **unauthorized** | **boolean** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { FloatingIPv4UnauthorizeResponse } from '@pidginhost/sdk';
14
+
15
+ const instance: FloatingIPv4UnauthorizeResponse = {
16
+ unauthorized,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,32 @@
1
+ # FloatingIPv6
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **number** | | [readonly] [default to undefined]
9
+ **address** | **string** | | [readonly] [default to undefined]
10
+ **gateway** | **string** | | [readonly] [default to undefined]
11
+ **prefix** | **number** | | [readonly] [default to undefined]
12
+ **label** | **string** | | [optional] [default to undefined]
13
+ **authorized_vm_count** | **number** | | [readonly] [default to undefined]
14
+ **created_at** | **string** | | [readonly] [default to undefined]
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import { FloatingIPv6 } from '@pidginhost/sdk';
20
+
21
+ const instance: FloatingIPv6 = {
22
+ id,
23
+ address,
24
+ gateway,
25
+ prefix,
26
+ label,
27
+ authorized_vm_count,
28
+ created_at,
29
+ };
30
+ ```
31
+
32
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # FloatingIPv6AuthorizeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **authorized** | **boolean** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { FloatingIPv6AuthorizeResponse } from '@pidginhost/sdk';
14
+
15
+ const instance: FloatingIPv6AuthorizeResponse = {
16
+ authorized,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # FloatingIPv6Create
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **label** | **string** | | [optional] [default to '']
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { FloatingIPv6Create } from '@pidginhost/sdk';
14
+
15
+ const instance: FloatingIPv6Create = {
16
+ label,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # FloatingIPv6UnauthorizeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **unauthorized** | **boolean** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { FloatingIPv6UnauthorizeResponse } from '@pidginhost/sdk';
14
+
15
+ const instance: FloatingIPv6UnauthorizeResponse = {
16
+ unauthorized,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,34 @@
1
+ # InboundRoute
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **number** | | [readonly] [default to undefined]
9
+ **domain** | **number** | | [readonly] [default to undefined]
10
+ **pattern** | **string** | | [default to undefined]
11
+ **mode** | [**ModeEnum**](ModeEnum.md) | | [default to undefined]
12
+ **webhook_url** | **string** | | [optional] [default to undefined]
13
+ **forward_to** | **string** | | [optional] [default to undefined]
14
+ **active** | **boolean** | | [optional] [default to undefined]
15
+ **created_at** | **string** | | [readonly] [default to undefined]
16
+
17
+ ## Example
18
+
19
+ ```typescript
20
+ import { InboundRoute } from '@pidginhost/sdk';
21
+
22
+ const instance: InboundRoute = {
23
+ id,
24
+ domain,
25
+ pattern,
26
+ mode,
27
+ webhook_url,
28
+ forward_to,
29
+ active,
30
+ created_at,
31
+ };
32
+ ```
33
+
34
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,11 @@
1
+ # ModeEnum
2
+
3
+ * `webhook` - HTTP webhook * `forward` - Forward
4
+
5
+ ## Enum
6
+
7
+ * `Webhook` (value: `'webhook'`)
8
+
9
+ * `Forward` (value: `'forward'`)
10
+
11
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedApiCredentialList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<ApiCredential>**](ApiCredential.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedApiCredentialList } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedApiCredentialList = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedEmailServiceList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<EmailService>**](EmailService.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedEmailServiceList } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedEmailServiceList = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedFloatingIPAuthorizationList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<FloatingIPAuthorization>**](FloatingIPAuthorization.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedFloatingIPAuthorizationList } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedFloatingIPAuthorizationList = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedFloatingIPv4List
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<FloatingIPv4>**](FloatingIPv4.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedFloatingIPv4List } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedFloatingIPv4List = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedFloatingIPv6List
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<FloatingIPv6>**](FloatingIPv6.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedFloatingIPv6List } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedFloatingIPv6List = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedInboundRouteList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<InboundRoute>**](InboundRoute.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedInboundRouteList } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedInboundRouteList = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedSandboxAddressList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<SandboxAddress>**](SandboxAddress.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedSandboxAddressList } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedSandboxAddressList = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedSendingDomainList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<SendingDomain>**](SendingDomain.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedSendingDomainList } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedSendingDomainList = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedSmtpCredentialList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<SmtpCredential>**](SmtpCredential.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedSmtpCredentialList } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedSmtpCredentialList = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,26 @@
1
+ # PaginatedSuppressionEntryList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **next** | **string** | | [optional] [default to undefined]
10
+ **previous** | **string** | | [optional] [default to undefined]
11
+ **results** | [**Array<SuppressionEntry>**](SuppressionEntry.md) | | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { PaginatedSuppressionEntryList } from '@pidginhost/sdk';
17
+
18
+ const instance: PaginatedSuppressionEntryList = {
19
+ count,
20
+ next,
21
+ previous,
22
+ results,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,44 @@
1
+ # PatchedEmailService
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **number** | | [optional] [readonly] [default to undefined]
9
+ **tier** | **string** | | [optional] [readonly] [default to undefined]
10
+ **status** | [**StatusA57Enum**](StatusA57Enum.md) | | [optional] [readonly] [default to undefined]
11
+ **sandbox_mode** | **boolean** | | [optional] [readonly] [default to undefined]
12
+ **auto_suspended** | **boolean** | | [optional] [readonly] [default to undefined]
13
+ **auto_suspend_reason** | **string** | | [optional] [readonly] [default to undefined]
14
+ **msgs_sent_24h** | **number** | | [optional] [readonly] [default to undefined]
15
+ **msgs_sent_30d** | **number** | | [optional] [readonly] [default to undefined]
16
+ **bounce_rate_pct** | **string** | | [optional] [readonly] [default to undefined]
17
+ **complaint_rate_pct** | **string** | | [optional] [readonly] [default to undefined]
18
+ **dedicated_ip_addon** | **boolean** | | [optional] [readonly] [default to undefined]
19
+ **quota_monthly** | **string** | | [optional] [readonly] [default to undefined]
20
+ **price_monthly_eur** | **string** | | [optional] [readonly] [default to undefined]
21
+
22
+ ## Example
23
+
24
+ ```typescript
25
+ import { PatchedEmailService } from '@pidginhost/sdk';
26
+
27
+ const instance: PatchedEmailService = {
28
+ id,
29
+ tier,
30
+ status,
31
+ sandbox_mode,
32
+ auto_suspended,
33
+ auto_suspend_reason,
34
+ msgs_sent_24h,
35
+ msgs_sent_30d,
36
+ bounce_rate_pct,
37
+ complaint_rate_pct,
38
+ dedicated_ip_addon,
39
+ quota_monthly,
40
+ price_monthly_eur,
41
+ };
42
+ ```
43
+
44
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)