Skip to content

Commit 69249a0

Browse files
Merge pull request #25 from mxenabled/openapi-generator-0.7.1
Generated version 0.7.1
2 parents 9658c9f + bfd4999 commit 69249a0

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

docs/MxPlatformApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ Name | Type | Description | Notes
10191019
10201020
Create user
10211021

1022-
Call this endpoint to create a new user. The MX Platform API will respond with the newly-created user object if successful. This endpoint accepts several parameters - id, metadata, and is_disabled. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill.
1022+
Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
10231023

10241024
### Example
10251025

@@ -7967,7 +7967,7 @@ Name | Type | Description | Notes
79677967
79687968
Update user
79697969

7970-
Use this endpoint to update the attributes of a specific user. The MX Platform API will respond with the updated user object. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill. To disable a user, update it and set the is_disabled parameter to true. Set it to false to re-enable the user.
7970+
Use this endpoint to update the attributes of the specified user.
79717971

79727972
### Example
79737973

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.7.0"
13+
__version__ = "0.7.1"
1414

1515
# import ApiClient
1616
from mx_platform_python.api_client import ApiClient

mx_platform_python/api/mx_platform_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6550,7 +6550,7 @@ def create_user(
65506550
):
65516551
"""Create user # noqa: E501
65526552

6553-
Call this endpoint to create a new user. The MX Platform API will respond with the newly-created user object if successful. This endpoint accepts several parameters - id, metadata, and is_disabled. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill. # noqa: E501
6553+
Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled. # noqa: E501
65546554
This method makes a synchronous HTTP request by default. To make an
65556555
asynchronous HTTP request, please pass async_req=True
65566556

@@ -13140,7 +13140,7 @@ def update_user(
1314013140
):
1314113141
"""Update user # noqa: E501
1314213142

13143-
Use this endpoint to update the attributes of a specific user. The MX Platform API will respond with the updated user object. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that users data until they are no longer disabled. Users who are disabled for the entirety of an MX Platform API billing period will not be factored into that months bill. To disable a user, update it and set the is_disabled parameter to true. Set it to false to re-enable the user. # noqa: E501
13143+
Use this endpoint to update the attributes of the specified user. # noqa: E501
1314413144
This method makes a synchronous HTTP request by default. To make an
1314513145
asynchronous HTTP request, please pass async_req=True
1314613146

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.7.0/python'
79+
self.user_agent = 'OpenAPI-Generator/0.7.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
@@ -411,7 +411,7 @@ def to_debug_report(self):
411411
"OS: {env}\n"\
412412
"Python Version: {pyversion}\n"\
413413
"Version of the API: 0.1.0\n"\
414-
"SDK Package Version: 0.7.0".\
414+
"SDK Package Version: 0.7.1".\
415415
format(env=sys.platform, pyversion=sys.version)
416416

417417
def get_host_settings(self):

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.7.0
4+
packageVersion: 0.7.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.7.0"
14+
VERSION = "0.7.1"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)