Skip to content

Commit 156ccc0

Browse files
authored
Merge pull request #70 from sendinblue/feature_AST-7
AST-7: Wrapper version update
2 parents 365dde2 + 437a9af commit 156ccc0

File tree

194 files changed

+16517
-2423
lines changed

Some content is hidden

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

194 files changed

+16517
-2423
lines changed

README.md

Lines changed: 82 additions & 14 deletions
Large diffs are not rendered by default.

docs/Body.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**name** | **String** | Name of task |
7-
**duration** | **Integer** | Duration of task | [optional]
8-
**task_type_id** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
9-
**date** | **DateTime** | Task date/time |
10-
**notes** | **String** | Notes added to a task | [optional]
11-
**done** | **BOOLEAN** | Task marked as done | [optional]
12-
**assign_to_id** | **String** | User id to whom task is assigned | [optional]
13-
**contacts_ids** | **Array<Integer>** | Contact ids for contacts linked to this task | [optional]
14-
**deals_ids** | **Array<String>** | Deal ids for deals a task is linked to | [optional]
15-
**companies_ids** | **Array<String>** | Companies ids for companies a task is linked to | [optional]
16-
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
6+
**name** | **String** | Name of company |
7+
**attributes** | **Object** | Attributes for company creation | [optional]
178

189

docs/Body1.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**name** | **String** | Name of task |
7-
**duration** | **Integer** | Duration of task | [optional]
8-
**task_type_id** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
9-
**date** | **DateTime** | Task date/time |
10-
**notes** | **String** | Notes added to a task | [optional]
11-
**done** | **BOOLEAN** | Task marked as done | [optional]
12-
**assign_to_id** | **String** | User id to whom task is assigned | [optional]
13-
**contacts_ids** | **Array<Integer>** | Contact ids for contacts linked to this task | [optional]
14-
**deals_ids** | **Array<String>** | Deal ids for deals a task is linked to | [optional]
15-
**companies_ids** | **Array<String>** | Companies ids for companies a task is linked to | [optional]
16-
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
6+
**name** | **String** | Name of company | [optional]
7+
**attributes** | **Object** | Attributes for company update | [optional]
178

189

docs/Body10.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# SibApiV3Sdk::Body10
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**visitor_id** | **String** | visitor’s ID received from a webhook or generated by you to <a href=\"https://developers.sendinblue.com/docs/customize-the-widget#identifying-existing-users\">bind existing user account to Conversations</a> |
7+
**text** | **String** | message text |
8+
**agent_id** | **String** | agent ID. It can be found on agent’s page or received from a webhook. Optional if `groupId` is set. | [optional]
9+
**group_id** | **String** | group ID. It can be found on group’s page. Optional if `agentId` is set. | [optional]
10+
11+

docs/Body11.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SibApiV3Sdk::Body11
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**text** | **String** | edited message text |
7+
8+

docs/Body12.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# SibApiV3Sdk::Body12
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**agent_id** | **String** | agent ID. It can be found on agent’s page or received from a webhook. Alternatively, you can use `agentEmail` + `agentName` + `receivedFrom` instead (all 3 fields required). | [optional]
7+
**received_from** | **String** | mark your messages to distinguish messages created by you from the others. | [optional]
8+
**agent_email** | **String** | agent email. When sending online pings from a standalone system, it’s hard to maintain a 1-to-1 relationship between the users of both systems. In this case, an agent can be specified by their email address. If there’s no agent with the specified email address in your Sendinblue organization, a dummy agent will be created automatically. | [optional]
9+
**agent_name** | **String** | agent name. | [optional]
10+
11+

docs/Body2.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# SibApiV3Sdk::Body2
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**link_contact_ids** | **Array<Integer>** | Contact ids for contacts to be linked with company | [optional]
7+
**unlink_contact_ids** | **Array<Integer>** | Contact ids for contacts to be unlinked from company | [optional]
8+
**link_deals_ids** | **Array<String>** | Deals ids for deals to be linked with company | [optional]
9+
**unlink_deals_ids** | **Array<String>** | Deals ids for deals to be unlinked from company | [optional]
10+
11+

docs/Body3.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# SibApiV3Sdk::Body3
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**name** | **String** | Name of deal |
7+
**attributes** | **Object** | Attributes fo\\r deal creation | [optional]
8+
9+

docs/Body4.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# SibApiV3Sdk::Body4
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**name** | **String** | Name of deal | [optional]
7+
**attributes** | **Object** | Attributes for deal update | [optional]
8+
9+

docs/Body5.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# SibApiV3Sdk::Body5
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**link_contact_ids** | **Array<Integer>** | Contact ids for contacts to be linked with deal | [optional]
7+
**unlink_contact_ids** | **Array<Integer>** | Contact ids for contacts to be unlinked from deal | [optional]
8+
**link_company_ids** | **Array<String>** | Company ids to be linked with deal | [optional]
9+
**unlink_company_ids** | **Array<String>** | Company ids to be unlinked from deal | [optional]
10+
11+

docs/Body6.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# SibApiV3Sdk::Body6
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**name** | **String** | Name of task |
7+
**duration** | **Integer** | Duration of task in milliseconds [1 minute = 60000 ms] | [optional]
8+
**task_type_id** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
9+
**date** | **DateTime** | Task due date and time |
10+
**notes** | **String** | Notes added to a task | [optional]
11+
**done** | **BOOLEAN** | Task marked as done | [optional]
12+
**assign_to_id** | **String** | User id to whom task is assigned | [optional]
13+
**contacts_ids** | **Array<Integer>** | Contact ids for contacts linked to this task | [optional]
14+
**deals_ids** | **Array<String>** | Deal ids for deals a task is linked to | [optional]
15+
**companies_ids** | **Array<String>** | Companies ids for companies a task is linked to | [optional]
16+
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
17+
18+

docs/Body7.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# SibApiV3Sdk::Body7
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**name** | **String** | Name of task | [optional]
7+
**duration** | **Integer** | Duration of task in milliseconds [1 minute = 60000 ms] | [optional]
8+
**task_type_id** | **String** | Id for type of task e.g Call / Email / Meeting etc. | [optional]
9+
**date** | **DateTime** | Task date/time | [optional]
10+
**notes** | **String** | Notes added to a task | [optional]
11+
**done** | **BOOLEAN** | Task marked as done | [optional]
12+
**assign_to_id** | **String** | User id to whom task is assigned | [optional]
13+
**contacts_ids** | **Array<Integer>** | Contact ids for contacts linked to this task | [optional]
14+
**deals_ids** | **Array<String>** | Deal ids for deals a task is linked to | [optional]
15+
**companies_ids** | **Array<String>** | Companies ids for companies a task is linked to | [optional]
16+
17+

docs/Body8.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# SibApiV3Sdk::Body8
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**visitor_id** | **String** | visitor’s ID received from a webhook or generated by you to <a href=\"https://developers.sendinblue.com/docs/customize-the-widget#identifying-existing-users\">bind existing user account to Conversations</a> |
7+
**text** | **String** | message text |
8+
**agent_id** | **String** | agent ID. It can be found on agent’s page or received from a webhook. Alternatively, you can use `agentEmail` + `agentName` + `receivedFrom` instead (all 3 fields required). | [optional]
9+
**received_from** | **String** | mark your messages to distinguish messages created by you from the others. | [optional]
10+
**agent_email** | **String** | agent email. When sending messages from a standalone system, it’s hard to maintain a 1-to-1 relationship between the users of both systems. In this case, an agent can be specified by their email address. | [optional]
11+
**agent_name** | **String** | agent name | [optional]
12+
13+

docs/Body9.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SibApiV3Sdk::Body9
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**text** | **String** | edited message text |
7+
8+

0 commit comments

Comments
 (0)