Skip to content

Commit 1f56501

Browse files
author
devexperience
committed
Generated version 0.15.1
This commit was automatically created by a GitHub Action to generate version 0.15.1 of this library.
1 parent 7f4eba2 commit 1f56501

10 files changed

Lines changed: 16 additions & 12 deletions

File tree

docs/AccountCreateRequestBody.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**skip_webhook** | **bool, none_type** | | [optional]
87
**account** | [**AccountCreateRequest**](AccountCreateRequest.md) | | [optional]
98
**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]
109

docs/AccountResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ Name | Type | Description | Notes
4949
**payment_due_at** | **str, none_type** | | [optional]
5050
**payoff_balance** | **float, none_type** | | [optional]
5151
**premium_amount** | **float, none_type** | | [optional]
52+
**property_type** | **int, none_type** | | [optional]
53+
**property_type_name** | **str, none_type** | | [optional]
5254
**routing_number** | **str, none_type** | | [optional]
5355
**started_on** | **str, none_type** | | [optional]
5456
**subtype** | **str, none_type** | | [optional]

docs/MxPlatformApi.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -706,9 +706,8 @@ with mx_platform_python.ApiClient(configuration) as api_client:
706706
api_instance = mx_platform_api.MxPlatformApi(api_client)
707707
user_guid = "USR-fa7537f3-48aa-a683-a02a-b18940482f54" # str | The unique id for a `user`.
708708
account_create_request_body = AccountCreateRequestBody(
709-
skip_webhook=True,
710709
account=AccountCreateRequest(
711-
account_subtype_name="SAVINGS",
710+
account_subtype_name="PERSONAL",
712711
account_type=2,
713712
apr=1.0,
714713
apy=1.0,

mx_platform_python/__init__.py

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

1212

13-
__version__ = "0.15.0"
13+
__version__ = "0.15.1"
1414

1515
# import ApiClient
1616
from mx_platform_python.api_client import ApiClient

mx_platform_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7676
self.default_headers[header_name] = header_value
7777
self.cookie = cookie
7878
# Set default User-Agent.
79-
self.user_agent = 'OpenAPI-Generator/0.15.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.15.1/python'
8080

8181
def __enter__(self):
8282
return self

mx_platform_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def to_debug_report(self):
404404
"OS: {env}\n"\
405405
"Python Version: {pyversion}\n"\
406406
"Version of the API: 0.1.0\n"\
407-
"SDK Package Version: 0.15.0".\
407+
"SDK Package Version: 0.15.1".\
408408
format(env=sys.platform, pyversion=sys.version)
409409

410410
def get_host_settings(self):

mx_platform_python/model/account_create_request_body.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ def openapi_types():
8787
"""
8888
lazy_import()
8989
return {
90-
'skip_webhook': (bool, none_type,), # noqa: E501
9190
'account': (AccountCreateRequest,), # noqa: E501
9291
}
9392

@@ -97,7 +96,6 @@ def discriminator():
9796

9897

9998
attribute_map = {
100-
'skip_webhook': 'skip_webhook', # noqa: E501
10199
'account': 'account', # noqa: E501
102100
}
103101

@@ -142,7 +140,6 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
142140
Animal class but this time we won't travel
143141
through its discriminator because we passed in
144142
_visited_composed_classes = (Animal,)
145-
skip_webhook (bool, none_type): [optional] # noqa: E501
146143
account (AccountCreateRequest): [optional] # noqa: E501
147144
"""
148145

@@ -225,7 +222,6 @@ def __init__(self, *args, **kwargs): # noqa: E501
225222
Animal class but this time we won't travel
226223
through its discriminator because we passed in
227224
_visited_composed_classes = (Animal,)
228-
skip_webhook (bool, none_type): [optional] # noqa: E501
229225
account (AccountCreateRequest): [optional] # noqa: E501
230226
"""
231227

mx_platform_python/model/account_response.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ def openapi_types():
126126
'payment_due_at': (str, none_type,), # noqa: E501
127127
'payoff_balance': (float, none_type,), # noqa: E501
128128
'premium_amount': (float, none_type,), # noqa: E501
129+
'property_type': (int, none_type,), # noqa: E501
130+
'property_type_name': (str, none_type,), # noqa: E501
129131
'routing_number': (str, none_type,), # noqa: E501
130132
'started_on': (str, none_type,), # noqa: E501
131133
'subtype': (str, none_type,), # noqa: E501
@@ -189,6 +191,8 @@ def discriminator():
189191
'payment_due_at': 'payment_due_at', # noqa: E501
190192
'payoff_balance': 'payoff_balance', # noqa: E501
191193
'premium_amount': 'premium_amount', # noqa: E501
194+
'property_type': 'property_type', # noqa: E501
195+
'property_type_name': 'property_type_name', # noqa: E501
192196
'routing_number': 'routing_number', # noqa: E501
193197
'started_on': 'started_on', # noqa: E501
194198
'subtype': 'subtype', # noqa: E501
@@ -287,6 +291,8 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
287291
payment_due_at (str, none_type): [optional] # noqa: E501
288292
payoff_balance (float, none_type): [optional] # noqa: E501
289293
premium_amount (float, none_type): [optional] # noqa: E501
294+
property_type (int, none_type): [optional] # noqa: E501
295+
property_type_name (str, none_type): [optional] # noqa: E501
290296
routing_number (str, none_type): [optional] # noqa: E501
291297
started_on (str, none_type): [optional] # noqa: E501
292298
subtype (str, none_type): [optional] # noqa: E501
@@ -423,6 +429,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
423429
payment_due_at (str, none_type): [optional] # noqa: E501
424430
payoff_balance (float, none_type): [optional] # noqa: E501
425431
premium_amount (float, none_type): [optional] # noqa: E501
432+
property_type (int, none_type): [optional] # noqa: E501
433+
property_type_name (str, none_type): [optional] # noqa: E501
426434
routing_number (str, none_type): [optional] # noqa: E501
427435
started_on (str, none_type): [optional] # noqa: E501
428436
subtype (str, none_type): [optional] # noqa: E501

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
packageName: mx_platform_python
33
packageUrl: https://pypi.org/project/mx-platform-python
4-
packageVersion: 0.15.0
4+
packageVersion: 0.15.1
55
projectName: mx-platform-python

setup.py

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

1313
NAME = "mx-platform-python"
14-
VERSION = "0.15.0"
14+
VERSION = "0.15.1"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)