Skip to content

Commit a6624a7

Browse files
Merge pull request #49 from sendinblue/feature_swagger_sync_new
Feature swagger sync new
2 parents 2a9d7ed + e41abcd commit a6624a7

File tree

73 files changed

+1258
-290
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1258
-290
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,13 @@ Class | Method | HTTP request | Description
178178
*SibApiV3Sdk::SendersApi* | [**get_ips_from_sender**](docs/SendersApi.md#get_ips_from_sender) | **GET** /senders/{senderId}/ips | Get all the dedicated IPs for a sender
179179
*SibApiV3Sdk::SendersApi* | [**get_senders**](docs/SendersApi.md#get_senders) | **GET** /senders | Get the list of all your senders
180180
*SibApiV3Sdk::SendersApi* | [**update_sender**](docs/SendersApi.md#update_sender) | **PUT** /senders/{senderId} | Update a sender
181+
*SibApiV3Sdk::TransactionalEmailsApi* | [**block_new_domain**](docs/TransactionalEmailsApi.md#block_new_domain) | **POST** /smtp/blockedDomains | Add a new domain to the list of blocked domains
181182
*SibApiV3Sdk::TransactionalEmailsApi* | [**create_smtp_template**](docs/TransactionalEmailsApi.md#create_smtp_template) | **POST** /smtp/templates | Create an email template
183+
*SibApiV3Sdk::TransactionalEmailsApi* | [**delete_blocked_domain**](docs/TransactionalEmailsApi.md#delete_blocked_domain) | **DELETE** /smtp/blockedDomains/{domain} | Unblock an existing domain from the list of blocked domains
182184
*SibApiV3Sdk::TransactionalEmailsApi* | [**delete_hardbounces**](docs/TransactionalEmailsApi.md#delete_hardbounces) | **POST** /smtp/deleteHardbounces | Delete hardbounces
183185
*SibApiV3Sdk::TransactionalEmailsApi* | [**delete_smtp_template**](docs/TransactionalEmailsApi.md#delete_smtp_template) | **DELETE** /smtp/templates/{templateId} | Delete an inactive email template
184186
*SibApiV3Sdk::TransactionalEmailsApi* | [**get_aggregated_smtp_report**](docs/TransactionalEmailsApi.md#get_aggregated_smtp_report) | **GET** /smtp/statistics/aggregatedReport | Get your transactional email activity aggregated over a period of time
187+
*SibApiV3Sdk::TransactionalEmailsApi* | [**get_blocked_domains**](docs/TransactionalEmailsApi.md#get_blocked_domains) | **GET** /smtp/blockedDomains | Get the list of blocked domains
185188
*SibApiV3Sdk::TransactionalEmailsApi* | [**get_email_event_report**](docs/TransactionalEmailsApi.md#get_email_event_report) | **GET** /smtp/statistics/events | Get all your transactional email activity (unaggregated events)
186189
*SibApiV3Sdk::TransactionalEmailsApi* | [**get_smtp_report**](docs/TransactionalEmailsApi.md#get_smtp_report) | **GET** /smtp/statistics/reports | Get your transactional email activity aggregated per day
187190
*SibApiV3Sdk::TransactionalEmailsApi* | [**get_smtp_template**](docs/TransactionalEmailsApi.md#get_smtp_template) | **GET** /smtp/templates/{templateId} | Returns the template information
@@ -217,6 +220,7 @@ Class | Method | HTTP request | Description
217220
- [SibApiV3Sdk::AddChildDomain](docs/AddChildDomain.md)
218221
- [SibApiV3Sdk::AddContactToList](docs/AddContactToList.md)
219222
- [SibApiV3Sdk::AddCredits](docs/AddCredits.md)
223+
- [SibApiV3Sdk::BlockDomain](docs/BlockDomain.md)
220224
- [SibApiV3Sdk::CreateAttribute](docs/CreateAttribute.md)
221225
- [SibApiV3Sdk::CreateAttributeEnumeration](docs/CreateAttributeEnumeration.md)
222226
- [SibApiV3Sdk::CreateChild](docs/CreateChild.md)
@@ -251,6 +255,7 @@ Class | Method | HTTP request | Description
251255
- [SibApiV3Sdk::GetAttributes](docs/GetAttributes.md)
252256
- [SibApiV3Sdk::GetAttributesAttributes](docs/GetAttributesAttributes.md)
253257
- [SibApiV3Sdk::GetAttributesEnumeration](docs/GetAttributesEnumeration.md)
258+
- [SibApiV3Sdk::GetBlockedDomains](docs/GetBlockedDomains.md)
254259
- [SibApiV3Sdk::GetCampaignOverview](docs/GetCampaignOverview.md)
255260
- [SibApiV3Sdk::GetCampaignRecipients](docs/GetCampaignRecipients.md)
256261
- [SibApiV3Sdk::GetCampaignStats](docs/GetCampaignStats.md)

docs/BlockDomain.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SibApiV3Sdk::BlockDomain
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**domain** | **String** | name of the domain to be blocked |
7+
8+

docs/ContactsApi.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,8 @@ api_instance = SibApiV3Sdk::ContactsApi.new
807807
opts = {
808808
limit: 50, # Integer | Number of documents per page
809809
offset: 0, # Integer | Index of the first document of the page
810-
modified_since: DateTime.parse('2013-10-20T19:20:30+01:00') # DateTime | Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result.
810+
modified_since: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result.
811+
sort: 'desc' # String | Sort the results in the ascending/descending order of record creation
811812
}
812813

813814
begin
@@ -826,6 +827,7 @@ Name | Type | Description | Notes
826827
**limit** | **Integer**| Number of documents per page | [optional] [default to 50]
827828
**offset** | **Integer**| Index of the first document of the page | [optional] [default to 0]
828829
**modified_since** | **DateTime**| Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
830+
**sort** | **String**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
829831

830832
### Return type
831833

@@ -871,7 +873,8 @@ list_id = 789 # Integer | Id of the list
871873
opts = {
872874
modified_since: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result.
873875
limit: 50, # Integer | Number of documents per page
874-
offset: 0 # Integer | Index of the first document of the page
876+
offset: 0, # Integer | Index of the first document of the page
877+
sort: 'desc' # String | Sort the results in the ascending/descending order of record creation
875878
}
876879

877880
begin
@@ -891,6 +894,7 @@ Name | Type | Description | Notes
891894
**modified_since** | **DateTime**| Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
892895
**limit** | **Integer**| Number of documents per page | [optional] [default to 50]
893896
**offset** | **Integer**| Index of the first document of the page | [optional] [default to 0]
897+
**sort** | **String**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
894898

895899
### Return type
896900

@@ -992,7 +996,8 @@ folder_id = 789 # Integer | Id of the folder
992996

993997
opts = {
994998
limit: 10, # Integer | Number of documents per page
995-
offset: 0 # Integer | Index of the first document of the page
999+
offset: 0, # Integer | Index of the first document of the page
1000+
sort: 'desc' # String | Sort the results in the ascending/descending order of record creation
9961001
}
9971002

9981003
begin
@@ -1011,6 +1016,7 @@ Name | Type | Description | Notes
10111016
**folder_id** | **Integer**| Id of the folder |
10121017
**limit** | **Integer**| Number of documents per page | [optional] [default to 10]
10131018
**offset** | **Integer**| Index of the first document of the page | [optional] [default to 0]
1019+
**sort** | **String**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
10141020

10151021
### Return type
10161022

@@ -1028,7 +1034,7 @@ Name | Type | Description | Notes
10281034

10291035

10301036
# **get_folders**
1031-
> GetFolders get_folders(limit, offset)
1037+
> GetFolders get_folders(limit, offset, opts)
10321038
10331039
Get all folders
10341040

@@ -1055,10 +1061,13 @@ limit = 10 # Integer | Number of documents per page
10551061

10561062
offset = 0 # Integer | Index of the first document of the page
10571063

1064+
opts = {
1065+
sort: 'desc' # String | Sort the results in the ascending/descending order of record creation
1066+
}
10581067

10591068
begin
10601069
#Get all folders
1061-
result = api_instance.get_folders(limit, offset)
1070+
result = api_instance.get_folders(limit, offset, opts)
10621071
p result
10631072
rescue SibApiV3Sdk::ApiError => e
10641073
puts "Exception when calling ContactsApi->get_folders: #{e}"
@@ -1071,6 +1080,7 @@ Name | Type | Description | Notes
10711080
------------- | ------------- | ------------- | -------------
10721081
**limit** | **Integer**| Number of documents per page | [default to 10]
10731082
**offset** | **Integer**| Index of the first document of the page | [default to 0]
1083+
**sort** | **String**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
10741084

10751085
### Return type
10761086

@@ -1170,7 +1180,8 @@ api_instance = SibApiV3Sdk::ContactsApi.new
11701180

11711181
opts = {
11721182
limit: 10, # Integer | Number of documents per page
1173-
offset: 0 # Integer | Index of the first document of the page
1183+
offset: 0, # Integer | Index of the first document of the page
1184+
sort: 'desc' # String | Sort the results in the ascending/descending order of record creation
11741185
}
11751186

11761187
begin
@@ -1188,6 +1199,7 @@ Name | Type | Description | Notes
11881199
------------- | ------------- | ------------- | -------------
11891200
**limit** | **Integer**| Number of documents per page | [optional] [default to 10]
11901201
**offset** | **Integer**| Index of the first document of the page | [optional] [default to 0]
1202+
**sort** | **String**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
11911203

11921204
### Return type
11931205

docs/CreateSmtpTemplateSender.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**name** | **String** | Name of the sender. If not passed, will be set to default | [optional]
7-
**email** | **String** | Email of the sender |
7+
**email** | **String** | Email of the sender | [optional]
88
**id** | **Integer** | Select the sender for the template on the basis of sender id. In order to select a sender with specific pool of IP’s, dedicated ip users shall pass id (instead of email). | [optional]
99

1010

docs/EmailCampaignsApi.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ opts = {
339339
start_date: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Mandatory if endDate is used. Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
340340
end_date: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Mandatory if startDate is used. Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
341341
limit: 500, # Integer | Number of documents per page
342-
offset: 0 # Integer | Index of the first document in the page
342+
offset: 0, # Integer | Index of the first document in the page
343+
sort: 'desc' # String | Sort the results in the ascending/descending order of record creation
343344
}
344345

345346
begin
@@ -361,6 +362,7 @@ Name | Type | Description | Notes
361362
**end_date** | **DateTime**| Mandatory if startDate is used. Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' ) | [optional]
362363
**limit** | **Integer**| Number of documents per page | [optional] [default to 500]
363364
**offset** | **Integer**| Index of the first document in the page | [optional] [default to 0]
365+
**sort** | **String**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
364366

365367
### Return type
366368

docs/FoldersApi.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ folder_id = 789 # Integer | Id of the folder
210210

211211
opts = {
212212
limit: 10, # Integer | Number of documents per page
213-
offset: 0 # Integer | Index of the first document of the page
213+
offset: 0, # Integer | Index of the first document of the page
214+
sort: 'desc' # String | Sort the results in the ascending/descending order of record creation
214215
}
215216

216217
begin
@@ -229,6 +230,7 @@ Name | Type | Description | Notes
229230
**folder_id** | **Integer**| Id of the folder |
230231
**limit** | **Integer**| Number of documents per page | [optional] [default to 10]
231232
**offset** | **Integer**| Index of the first document of the page | [optional] [default to 0]
233+
**sort** | **String**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
232234

233235
### Return type
234236

@@ -246,7 +248,7 @@ Name | Type | Description | Notes
246248

247249

248250
# **get_folders**
249-
> GetFolders get_folders(limit, offset)
251+
> GetFolders get_folders(limit, offset, opts)
250252
251253
Get all folders
252254

@@ -273,10 +275,13 @@ limit = 10 # Integer | Number of documents per page
273275

274276
offset = 0 # Integer | Index of the first document of the page
275277

278+
opts = {
279+
sort: 'desc' # String | Sort the results in the ascending/descending order of record creation
280+
}
276281

277282
begin
278283
#Get all folders
279-
result = api_instance.get_folders(limit, offset)
284+
result = api_instance.get_folders(limit, offset, opts)
280285
p result
281286
rescue SibApiV3Sdk::ApiError => e
282287
puts "Exception when calling FoldersApi->get_folders: #{e}"
@@ -289,6 +294,7 @@ Name | Type | Description | Notes
289294
------------- | ------------- | ------------- | -------------
290295
**limit** | **Integer**| Number of documents per page | [default to 10]
291296
**offset** | **Integer**| Index of the first document of the page | [default to 0]
297+
**sort** | **String**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
292298

293299
### Return type
294300

docs/GetBlockedDomains.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SibApiV3Sdk::GetBlockedDomains
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**domains** | **Array<String>** | List of all blocked domains |
7+
8+

docs/GetChildDomain.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**domain** | **String** | Sender domain |
7-
**active** | **BOOLEAN** | indicates whether a domain is verified or not |
6+
**domain** | **String** | Sender domain | [optional]
7+
**active** | **BOOLEAN** | indicates whether a domain is verified or not | [optional]
88

99

docs/GetChildrenList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**children** | **Array<Object>** | Your children's account information | [optional]
7-
**count** | **Integer** | Number of child accounts |
7+
**count** | **Integer** | Number of child accounts | [optional]
88

99

docs/GetEmailCampaign.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Name | Type | Description | Notes
2121
**footer** | **String** | Footer of the campaign |
2222
**sender** | [**GetExtendedCampaignOverviewSender**](GetExtendedCampaignOverviewSender.md) | |
2323
**reply_to** | **String** | Email defined as the \"Reply to\" of the campaign |
24-
**to_field** | **String** | Customisation of the \"to\" field of the campaign |
24+
**to_field** | **String** | Customisation of the \"to\" field of the campaign | [optional]
2525
**html_content** | **String** | HTML content of the campaign |
2626
**share_link** | **String** | Link to share the campaign on social medias | [optional]
27-
**tag** | **String** | Tag of the campaign |
27+
**tag** | **String** | Tag of the campaign | [optional]
2828
**created_at** | **DateTime** | Creation UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
2929
**modified_at** | **DateTime** | UTC date-time of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
3030
**inline_image_activation** | **BOOLEAN** | Status of inline image. inlineImageActivation = false means image can’t be embedded, & inlineImageActivation = true means image can be embedded, in the email. | [optional]

docs/GetEmailCampaigns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**campaigns** | **Array<Object>** | | [optional]
7-
**count** | **Integer** | Number of Email campaigns retrieved |
7+
**count** | **Integer** | Number of Email campaigns retrieved | [optional]
88

99

docs/GetEmailEventReportEvents.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ Name | Type | Description | Notes
1313
**ip** | **String** | IP from which the user has opened the email or clicked on the link (only available if the event is opened or clicks) | [optional]
1414
**link** | **String** | The link which is sent to the user (only available if the event is requests or opened or clicks) | [optional]
1515
**from** | **String** | Sender email from which the emails are sent | [optional]
16+
**template_id** | **Integer** | ID of the template (only available if the email is template based) | [optional]
1617

1718

docs/GetExtendedCampaignOverview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Name | Type | Description | Notes
2121
**footer** | **String** | Footer of the campaign |
2222
**sender** | [**GetExtendedCampaignOverviewSender**](GetExtendedCampaignOverviewSender.md) | |
2323
**reply_to** | **String** | Email defined as the \"Reply to\" of the campaign |
24-
**to_field** | **String** | Customisation of the \"to\" field of the campaign |
24+
**to_field** | **String** | Customisation of the \"to\" field of the campaign | [optional]
2525
**html_content** | **String** | HTML content of the campaign |
2626
**share_link** | **String** | Link to share the campaign on social medias | [optional]
27-
**tag** | **String** | Tag of the campaign |
27+
**tag** | **String** | Tag of the campaign | [optional]
2828
**created_at** | **DateTime** | Creation UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
2929
**modified_at** | **DateTime** | UTC date-time of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
3030
**inline_image_activation** | **BOOLEAN** | Status of inline image. inlineImageActivation = false means image can’t be embedded, & inlineImageActivation = true means image can be embedded, in the email. | [optional]

docs/GetFolderLists.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**lists** | **Array<Object>** | |
7-
**count** | **Integer** | Number of lists in the folder |
6+
**lists** | **Array<Object>** | | [optional]
7+
**count** | **Integer** | Number of lists in the folder | [optional]
88

99

docs/GetLists.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**lists** | **Array<Object>** | Listing of all the lists available in your account |
7-
**count** | **Integer** | Number of lists in your account |
6+
**lists** | **Array<Object>** | Listing of all the lists available in your account | [optional]
7+
**count** | **Integer** | Number of lists in your account | [optional]
88

99

docs/GetProcesses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**processes** | [**Array<GetProcess>**](GetProcess.md) | List of processes available on your account | [optional]
7-
**count** | **Integer** | Number of processes available on your account |
7+
**count** | **Integer** | Number of processes available on your account | [optional]
88

99

docs/GetSmsCampaign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**name** | **String** | Name of the SMS Campaign |
88
**status** | **String** | Status of the SMS Campaign |
99
**content** | **String** | Content of the SMS Campaign |
10-
**scheduled_at** | **DateTime** | UTC date-time on which SMS campaign is scheduled. Should be in YYYY-MM-DDTHH:mm:ss.SSSZ format |
10+
**scheduled_at** | **DateTime** | UTC date-time on which SMS campaign is scheduled. Should be in YYYY-MM-DDTHH:mm:ss.SSSZ format | [optional]
1111
**sender** | **String** | Sender of the SMS Campaign |
1212
**created_at** | **DateTime** | Creation UTC date-time of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1313
**modified_at** | **DateTime** | UTC date-time of last modification of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |

docs/GetSmsCampaignOverview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**name** | **String** | Name of the SMS Campaign |
88
**status** | **String** | Status of the SMS Campaign |
99
**content** | **String** | Content of the SMS Campaign |
10-
**scheduled_at** | **DateTime** | UTC date-time on which SMS campaign is scheduled. Should be in YYYY-MM-DDTHH:mm:ss.SSSZ format |
10+
**scheduled_at** | **DateTime** | UTC date-time on which SMS campaign is scheduled. Should be in YYYY-MM-DDTHH:mm:ss.SSSZ format | [optional]
1111
**sender** | **String** | Sender of the SMS Campaign |
1212
**created_at** | **DateTime** | Creation UTC date-time of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1313
**modified_at** | **DateTime** | UTC date-time of last modification of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |

0 commit comments

Comments
 (0)