Skip to content

Commit 5e1a7fb

Browse files
committed
Release version 0.1.1
1 parent 74adc72 commit 5e1a7fb

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Pinterest's REST API
66
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
77

88
- API version: 5.6.0
9-
- Package version: 0.1.0
9+
- Package version: 0.1.1
1010
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1111
For more information, please visit [https://developers.pinterest.com/](https://developers.pinterest.com/)
1212

docs/Keyword.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**parent_id** | **str** | Keyword parent entity ID (advertiser, campaign, ad group). | [optional]
1212
**parent_type** | **str** | Parent entity type | [optional]
1313
**type** | **str** | Always keyword | [optional]
14-
**bid** | **float** | Keyword custom bid | [optional]
14+
**bid** | **int, none_type** | Keyword custom bid in microcurrency - null if inherited from parent ad group. | [optional]
1515
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1616

1717
[[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/KeywordsCommon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**match_type** | [**MatchTypeResponse**](MatchTypeResponse.md) | |
88
**value** | **str** | Keyword value (120 chars max). |
9-
**bid** | **float** | Keyword custom bid | [optional]
9+
**bid** | **int, none_type** | Keyword custom bid in microcurrency - null if inherited from parent ad group. | [optional]
1010
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [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)

pinterest/generated/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313

14-
__version__ = "0.1.0"
14+
__version__ = "0.1.1"
1515

1616
# import ApiClient
1717
from pinterest.generated.client.api_client import ApiClient

pinterest/generated/client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
8282
self.default_headers[header_name] = header_value
8383
self.cookie = cookie
8484
# Set default User-Agent.
85-
self.user_agent = 'pins-generated-client/python/0.1.0'
85+
self.user_agent = 'pins-generated-client/python/0.1.1'
8686

8787
def __enter__(self):
8888
return self

pinterest/generated/client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def to_debug_report(self):
419419
"OS: {env}\n"\
420420
"Python Version: {pyversion}\n"\
421421
"Version of the API: 5.6.0\n"\
422-
"SDK Package Version: 0.1.0".\
422+
"SDK Package Version: 0.1.1".\
423423
format(env=sys.platform, pyversion=sys.version)
424424

425425
def get_host_settings(self):

pinterest/generated/client/model/keyword.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def openapi_types():
107107
'parent_id': (str,), # noqa: E501
108108
'parent_type': (str,), # noqa: E501
109109
'type': (str,), # noqa: E501
110-
'bid': (float,), # noqa: E501
110+
'bid': (int, none_type,), # noqa: E501
111111
}
112112

113113
@cached_property
@@ -172,7 +172,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
172172
parent_id (str): Keyword parent entity ID (advertiser, campaign, ad group).. [optional] # noqa: E501
173173
parent_type (str): Parent entity type. [optional] # noqa: E501
174174
type (str): Always keyword. [optional] # noqa: E501
175-
bid (float): Keyword custom bid. [optional] # noqa: E501
175+
bid (int, none_type): Keyword custom bid in microcurrency - null if inherited from parent ad group.. [optional] # noqa: E501
176176
"""
177177

178178
_check_type = kwargs.pop('_check_type', True)
@@ -279,7 +279,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
279279
parent_id (str): Keyword parent entity ID (advertiser, campaign, ad group).. [optional] # noqa: E501
280280
parent_type (str): Parent entity type. [optional] # noqa: E501
281281
type (str): Always keyword. [optional] # noqa: E501
282-
bid (float): Keyword custom bid. [optional] # noqa: E501
282+
bid (int, none_type): Keyword custom bid in microcurrency - null if inherited from parent ad group.. [optional] # noqa: E501
283283
"""
284284

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

pinterest/generated/client/model/keywords_common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def openapi_types():
9090
return {
9191
'match_type': (MatchTypeResponse,), # noqa: E501
9292
'value': (str,), # noqa: E501
93-
'bid': (float,), # noqa: E501
93+
'bid': (int, none_type,), # noqa: E501
9494
}
9595

9696
@cached_property
@@ -149,7 +149,7 @@ def _from_openapi_data(cls, match_type, value, *args, **kwargs): # noqa: E501
149149
Animal class but this time we won't travel
150150
through its discriminator because we passed in
151151
_visited_composed_classes = (Animal,)
152-
bid (float): Keyword custom bid. [optional] # noqa: E501
152+
bid (int, none_type): Keyword custom bid in microcurrency - null if inherited from parent ad group.. [optional] # noqa: E501
153153
"""
154154

155155
_check_type = kwargs.pop('_check_type', True)
@@ -237,7 +237,7 @@ def __init__(self, match_type, value, *args, **kwargs): # noqa: E501
237237
Animal class but this time we won't travel
238238
through its discriminator because we passed in
239239
_visited_composed_classes = (Animal,)
240-
bid (float): Keyword custom bid. [optional] # noqa: E501
240+
bid (int, none_type): Keyword custom bid in microcurrency - null if inherited from parent ad group.. [optional] # noqa: E501
241241
"""
242242

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "Pinterest Generated Client"
15-
VERSION = "0.1.0"
15+
VERSION = "0.1.1"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)