Skip to content

Commit 5e6f9df

Browse files
authored
Merge pull request #24 from sendinblue/feature_update-attr
Contact attribute update + date-time desc updates
2 parents 9c08e49 + 921ebc8 commit 5e6f9df

File tree

49 files changed

+103
-91
lines changed

Some content is hidden

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

49 files changed

+103
-91
lines changed

docs/Api/ContactsApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key',
577577
$api_instance = new SendinBlue\Client\Api\ContactsApi();
578578
$limit = 50; // int | Number of documents per page
579579
$offset = 0; // int | Index of the first document of the page
580-
$modifiedSince = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Filter (urlencoded) the contacts modified after a given date-time (YYYY-MM-DDTHH:mm:ss.SSSZ)
580+
$modifiedSince = new \DateTime("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)
581581

582582
try {
583583
$result = $api_instance->getContacts($limit, $offset, $modifiedSince);
@@ -594,7 +594,7 @@ Name | Type | Description | Notes
594594
------------- | ------------- | ------------- | -------------
595595
**limit** | **int**| Number of documents per page | [optional] [default to 50]
596596
**offset** | **int**| Index of the first document of the page | [optional] [default to 0]
597-
**modifiedSince** | **\DateTime**| Filter (urlencoded) the contacts modified after a given date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
597+
**modifiedSince** | **\DateTime**| Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
598598

599599
### Return type
600600

@@ -628,7 +628,7 @@ SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key',
628628

629629
$api_instance = new SendinBlue\Client\Api\ContactsApi();
630630
$listId = 789; // int | Id of the list
631-
$modifiedSince = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Filter (urlencoded) the contacts modified after a given date-time (YYYY-MM-DDTHH:mm:ss.SSSZ)
631+
$modifiedSince = new \DateTime("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)
632632
$limit = 50; // int | Number of documents per page
633633
$offset = 0; // int | Index of the first document of the page
634634

@@ -646,7 +646,7 @@ try {
646646
Name | Type | Description | Notes
647647
------------- | ------------- | ------------- | -------------
648648
**listId** | **int**| Id of the list |
649-
**modifiedSince** | **\DateTime**| Filter (urlencoded) the contacts modified after a given date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
649+
**modifiedSince** | **\DateTime**| Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
650650
**limit** | **int**| Number of documents per page | [optional] [default to 50]
651651
**offset** | **int**| Index of the first document of the page | [optional] [default to 0]
652652

docs/Api/ListsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key',
177177

178178
$api_instance = new SendinBlue\Client\Api\ListsApi();
179179
$listId = 789; // int | Id of the list
180-
$modifiedSince = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | Filter (urlencoded) the contacts modified after a given date-time (YYYY-MM-DDTHH:mm:ss.SSSZ)
180+
$modifiedSince = new \DateTime("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)
181181
$limit = 50; // int | Number of documents per page
182182
$offset = 0; // int | Index of the first document of the page
183183

@@ -195,7 +195,7 @@ try {
195195
Name | Type | Description | Notes
196196
------------- | ------------- | ------------- | -------------
197197
**listId** | **int**| Id of the list |
198-
**modifiedSince** | **\DateTime**| Filter (urlencoded) the contacts modified after a given date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
198+
**modifiedSince** | **\DateTime**| Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
199199
**limit** | **int**| Number of documents per page | [optional] [default to 50]
200200
**offset** | **int**| Index of the first document of the page | [optional] [default to 0]
201201

docs/Model/CreateEmailCampaign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**name** | **string** | Name of the campaign |
99
**htmlContent** | **string** | Mandatory if htmlUrl is empty. Body of the message (HTML) | [optional]
1010
**htmlUrl** | **string** | Mandatory if htmlContent is empty. Url to the message (HTML) | [optional]
11-
**scheduledAt** | **\DateTime** | Sending date and time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
11+
**scheduledAt** | **\DateTime** | Sending UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
1212
**subject** | **string** | Subject of the campaign |
1313
**replyTo** | **string** | Email on which the campaign recipients will be able to reply to | [optional]
1414
**toField** | **string** | To personalize the «To» Field, e.g. if you want to include the first name and last name of your recipient, use [FNAME] [LNAME]. These attributes must already exist in your contact database | [optional]

docs/Model/CreateSmsCampaign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**sender** | **string** | Name of the sender. The number of characters is limited to 11 |
88
**content** | **string** | Content of the message. The maximum characters used per SMS is 160, if used more than that, it will be counted as more than one SMS | [optional]
99
**recipients** | [**\SendinBlue\Client\Model\CreateSmsCampaignRecipients**](CreateSmsCampaignRecipients.md) | | [optional]
10-
**scheduledAt** | **\DateTime** | Date and time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
10+
**scheduledAt** | **\DateTime** | UTC date-time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
1111

1212
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1313

docs/Model/GetCampaignOverview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**subject** | **string** | Subject of the campaign |
99
**type** | **string** | Type of campaign |
1010
**status** | **string** | Status of the campaign |
11-
**scheduledAt** | **\DateTime** | Date on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
11+
**scheduledAt** | **\DateTime** | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
1212

1313
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1414

docs/Model/GetContactCampaignStatsOpened.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**campaignId** | **int** | ID of the campaign which generated the event |
77
**count** | **int** | Number of openings of the campaign |
8-
**eventTime** | **\DateTime** | Date of the event |
8+
**eventTime** | **\DateTime** | UTC date-time of the event |
99
**ip** | **string** | IP from which the user has opened the campaign |
1010

1111
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

docs/Model/GetContactDetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**id** | **int** | ID of the contact for which you requested the details |
88
**emailBlacklisted** | **bool** | Blacklist status for email campaigns (true=blacklisted, false=not blacklisted) |
99
**smsBlacklisted** | **bool** | Blacklist status for SMS campaigns (true=blacklisted, false=not blacklisted) |
10-
**modifiedAt** | **\DateTime** | Last modification date of the contact (YYYY-MM-DDTHH:mm:ss.SSSZ) |
10+
**modifiedAt** | **\DateTime** | Last modification UTC date-time of the contact (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1111
**listIds** | **int[]** | |
1212
**listUnsubscribed** | **int[]** | | [optional]
1313
**attributes** | **map[string,string]** | |

docs/Model/GetEmailCampaign.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**subject** | **string** | Subject of the campaign |
99
**type** | **string** | Type of campaign |
1010
**status** | **string** | Status of the campaign |
11-
**scheduledAt** | **\DateTime** | Date on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
11+
**scheduledAt** | **\DateTime** | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
1212
**testSent** | **bool** | Retrieved the status of test email sending. (true=Test email has been sent false=Test email has not been sent) |
1313
**header** | **string** | Header of the campaign |
1414
**footer** | **string** | Footer of the campaign |
@@ -18,8 +18,8 @@ Name | Type | Description | Notes
1818
**htmlContent** | **string** | HTML content of the campaign |
1919
**shareLink** | **string** | Link to share the campaign on social medias | [optional]
2020
**tag** | **string** | Tag of the campaign |
21-
**createdAt** | **\DateTime** | Creation date of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
22-
**modifiedAt** | **\DateTime** | Date of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
21+
**createdAt** | **\DateTime** | Creation UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
22+
**modifiedAt** | **\DateTime** | UTC date-time of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
2323
**inlineImageActivation** | **bool** | Status of inline image. inlineImageActivation = false means image can’t be embedded, & inlineImageActivation = true means image can be embedded, in the email. | [optional]
2424
**mirrorActive** | **bool** | Status of mirror links in campaign. mirrorActive = false means mirror links are deactivated, & mirrorActive = true means mirror links are activated, in the campaign | [optional]
2525
**recurring** | **bool** | FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times | [optional]

docs/Model/GetEmailEventReportEvents.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
**email** | **string** | Email address which generates the event |
7-
**date** | **\DateTime** | Date on which the event has been generated |
7+
**date** | **\DateTime** | UTC date-time on which the event has been generated |
88
**subject** | **string** | Subject of the event | [optional]
99
**messageId** | **string** | Message ID which generated the event |
1010
**event** | **string** | Event which occurred |

docs/Model/GetExtendedCampaignOverview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**subject** | **string** | Subject of the campaign |
99
**type** | **string** | Type of campaign |
1010
**status** | **string** | Status of the campaign |
11-
**scheduledAt** | **\DateTime** | Date on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
11+
**scheduledAt** | **\DateTime** | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
1212
**testSent** | **bool** | Retrieved the status of test email sending. (true=Test email has been sent false=Test email has not been sent) |
1313
**header** | **string** | Header of the campaign |
1414
**footer** | **string** | Footer of the campaign |
@@ -18,8 +18,8 @@ Name | Type | Description | Notes
1818
**htmlContent** | **string** | HTML content of the campaign |
1919
**shareLink** | **string** | Link to share the campaign on social medias | [optional]
2020
**tag** | **string** | Tag of the campaign |
21-
**createdAt** | **\DateTime** | Creation date of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
22-
**modifiedAt** | **\DateTime** | Date of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
21+
**createdAt** | **\DateTime** | Creation UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
22+
**modifiedAt** | **\DateTime** | UTC date-time of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
2323
**inlineImageActivation** | **bool** | Status of inline image. inlineImageActivation = false means image can’t be embedded, & inlineImageActivation = true means image can be embedded, in the email. | [optional]
2424
**mirrorActive** | **bool** | Status of mirror links in campaign. mirrorActive = false means mirror links are deactivated, & mirrorActive = true means mirror links are activated, in the campaign | [optional]
2525
**recurring** | **bool** | FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times | [optional]

docs/Model/GetExtendedContactDetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**id** | **int** | ID of the contact for which you requested the details |
88
**emailBlacklisted** | **bool** | Blacklist status for email campaigns (true=blacklisted, false=not blacklisted) |
99
**smsBlacklisted** | **bool** | Blacklist status for SMS campaigns (true=blacklisted, false=not blacklisted) |
10-
**modifiedAt** | **\DateTime** | Last modification date of the contact (YYYY-MM-DDTHH:mm:ss.SSSZ) |
10+
**modifiedAt** | **\DateTime** | Last modification UTC date-time of the contact (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1111
**listIds** | **int[]** | |
1212
**listUnsubscribed** | **int[]** | | [optional]
1313
**attributes** | **map[string,string]** | |

docs/Model/GetExtendedContactDetailsStatisticsLinks.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
**count** | **int** | Number of clicks on this link for the campaign |
7-
**eventTime** | **\DateTime** | Date of the event |
7+
**eventTime** | **\DateTime** | UTC date-time of the event |
88
**ip** | **string** | IP from which the user has clicked on the link |
99
**url** | **string** | URL of the clicked link |
1010

docs/Model/GetExtendedContactDetailsStatisticsMessagesSent.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
**campaignId** | **int** | ID of the campaign which generated the event |
7-
**eventTime** | **\DateTime** | Date of the event |
7+
**eventTime** | **\DateTime** | UTC date-time of the event |
88

99
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1010

docs/Model/GetExtendedContactDetailsStatisticsOpened.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**campaignId** | **int** | ID of the campaign which generated the event |
77
**count** | **int** | Number of openings for the campaign |
8-
**eventTime** | **\DateTime** | Date of the event |
8+
**eventTime** | **\DateTime** | UTC date-time of the event |
99
**ip** | **string** | IP from which the user has opened the email |
1010

1111
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

docs/Model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**eventTime** | **\DateTime** | Date of the event |
6+
**eventTime** | **\DateTime** | UTC date-time of the event |
77
**ip** | **string** | IP from which the user has been unsubscribed |
88

99
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

docs/Model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.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
**campaignId** | **int** | ID of the campaign which generated the event |
7-
**eventTime** | **\DateTime** | Date of the event |
7+
**eventTime** | **\DateTime** | UTC date-time of the event |
88
**ip** | **string** | IP from which the user has unsubscribed |
99

1010
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

docs/Model/GetExtendedList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**totalBlacklisted** | **int** | Number of blacklisted contacts in the list |
99
**totalSubscribers** | **int** | Number of contacts in the list |
1010
**folderId** | **int** | ID of the folder |
11-
**createdAt** | **\DateTime** | Creation Date of the list (YYYY-MM-DDTHH:mm:ss.SSSZ) |
11+
**createdAt** | **\DateTime** | Creation UTC date-time of the list (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1212
**campaignStats** | [**\SendinBlue\Client\Model\GetExtendedListCampaignStats[]**](GetExtendedListCampaignStats.md) | | [optional]
1313
**dynamicList** | **bool** | Status telling if the list is dynamic or not (true=dynamic, false=not dynamic) | [optional]
1414

docs/Model/GetSmsCampaign.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ 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-
**scheduledAt** | **\DateTime** | Date on which SMS campaign is scheduled. Should be in YYYY-MM-DDTHH:mm:ss.SSSZ format |
10+
**scheduledAt** | **\DateTime** | UTC date-time on which SMS campaign is scheduled. Should be in YYYY-MM-DDTHH:mm:ss.SSSZ format |
1111
**testSent** | **bool** | Retrieved the status of test SMS sending. (true=Test SMS has been sent false=Test SMS has not been sent) |
1212
**sender** | **string** | Sender of the SMS Campaign |
13-
**createdAt** | **\DateTime** | Creation date of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
14-
**modifiedAt** | **\DateTime** | Date of last modification of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
13+
**createdAt** | **\DateTime** | Creation UTC date-time of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
14+
**modifiedAt** | **\DateTime** | UTC date-time of last modification of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1515

1616
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1717

docs/Model/GetSmsCampaignOverview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ 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-
**scheduledAt** | **\DateTime** | Date on which SMS campaign is scheduled. Should be in YYYY-MM-DDTHH:mm:ss.SSSZ format |
10+
**scheduledAt** | **\DateTime** | UTC date-time on which SMS campaign is scheduled. Should be in YYYY-MM-DDTHH:mm:ss.SSSZ format |
1111
**testSent** | **bool** | Retrieved the status of test SMS sending. (true=Test SMS has been sent false=Test SMS has not been sent) |
1212
**sender** | **string** | Sender of the SMS Campaign |
13-
**createdAt** | **\DateTime** | Creation date of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
14-
**modifiedAt** | **\DateTime** | Date of last modification of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
13+
**createdAt** | **\DateTime** | Creation UTC date-time of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
14+
**modifiedAt** | **\DateTime** | UTC date-time of last modification of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1515

1616
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1717

docs/Model/GetSmtpTemplateOverview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Name | Type | Description | Notes
1313
**toField** | **string** | Customisation of the \"to\" field for the template |
1414
**tag** | **string** | Tag of the template |
1515
**htmlContent** | **string** | HTML content of the template |
16-
**createdAt** | **\DateTime** | Creation date of the template (YYYY-MM-DDTHH:mm:ss.SSSZ) |
17-
**modifiedAt** | **\DateTime** | Last modification date of the template (YYYY-MM-DDTHH:mm:ss.SSSZ) |
16+
**createdAt** | **\DateTime** | Creation UTC date-time of the template (YYYY-MM-DDTHH:mm:ss.SSSZ) |
17+
**modifiedAt** | **\DateTime** | Last modification UTC date-time of the template (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1818

1919
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
2020

docs/Model/GetWebhook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
88
**description** | **string** | Description of the webhook |
99
**events** | **string[]** | |
1010
**type** | **string** | Type of webhook (marketing or transac) |
11-
**createdAt** | **\DateTime** | Creation date of the webhook (YYYY-MM-DDTHH:mm:ss.SSSZ) |
12-
**modifiedAt** | **\DateTime** | Last modification date of the webhook (YYYY-MM-DDTHH:mm:ss.SSSZ) |
11+
**createdAt** | **\DateTime** | Creation UTC date-time of the webhook (YYYY-MM-DDTHH:mm:ss.SSSZ) |
12+
**modifiedAt** | **\DateTime** | Last modification UTC date-time of the webhook (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1313

1414
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
1515

0 commit comments

Comments
 (0)