Skip to content

Commit e415645

Browse files
Automated update by SDK Generator version:1.2.0 commit:b0eeb2c
1 parent b96e7ae commit e415645

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

docs/apis/CrmApi.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1686,6 +1686,9 @@ with apideck.ApiClient(configuration) as api_client:
16861686
),
16871687
],
16881688
tags=Tags(["New"]),
1689+
opportunity_ids=[
1690+
"opportunity_ids_example",
1691+
],
16891692
) # Contact |
16901693
raw = False # bool | Include raw response. Mostly used for debugging purposes (optional) if omitted the server will use the default value of False
16911694
consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional)
@@ -2227,6 +2230,9 @@ with apideck.ApiClient(configuration) as api_client:
22272230
),
22282231
],
22292232
tags=Tags(["New"]),
2233+
opportunity_ids=[
2234+
"opportunity_ids_example",
2235+
],
22302236
) # Contact |
22312237
consumer_id = "x-apideck-consumer-id_example" # str | ID of the consumer which you want to get or push data from (optional)
22322238
app_id = "dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX" # str | The ID of your Unify application (optional)

docs/models/Contact.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Name | Type | Description | Notes
4343
**custom_mappings** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | When custom mappings are configured on the resource, the result is included here. | [optional] [readonly]
4444
**updated_at** | **datetime, none_type** | The last update date of the contact. | [optional] [readonly]
4545
**created_at** | **datetime, none_type** | The creation date of the contact. | [optional] [readonly]
46+
**opportunity_ids** | **[str]** | The opportunity ids of the contact. | [optional]
4647

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

src/apideck/model/contact.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ def openapi_types():
144144
'custom_mappings': ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type,), # noqa: E501
145145
'updated_at': (datetime, none_type,), # noqa: E501
146146
'created_at': (datetime, none_type,), # noqa: E501
147+
'opportunity_ids': ([str],), # noqa: E501
147148
}
148149

149150
@cached_property
@@ -191,6 +192,7 @@ def discriminator():
191192
'custom_mappings': 'custom_mappings', # noqa: E501
192193
'updated_at': 'updated_at', # noqa: E501
193194
'created_at': 'created_at', # noqa: E501
195+
'opportunity_ids': 'opportunity_ids', # noqa: E501
194196
}
195197

196198
read_only_vars = {
@@ -282,6 +284,7 @@ def _from_openapi_data(cls, name, *args, **kwargs): # noqa: E501
282284
custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501
283285
updated_at (datetime, none_type): The last update date of the contact.. [optional] # noqa: E501
284286
created_at (datetime, none_type): The creation date of the contact.. [optional] # noqa: E501
287+
opportunity_ids ([str]): The opportunity ids of the contact.. [optional] # noqa: E501
285288
"""
286289

287290
_check_type = kwargs.pop('_check_type', True)
@@ -405,6 +408,7 @@ def __init__(self, name, *args, **kwargs): # noqa: E501
405408
custom_mappings ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type): When custom mappings are configured on the resource, the result is included here.. [optional] # noqa: E501
406409
updated_at (datetime, none_type): The last update date of the contact.. [optional] # noqa: E501
407410
created_at (datetime, none_type): The creation date of the contact.. [optional] # noqa: E501
411+
opportunity_ids ([str]): The opportunity ids of the contact.. [optional] # noqa: E501
408412
"""
409413

410414
_check_type = kwargs.pop('_check_type', True)

0 commit comments

Comments
 (0)