Skip to content

Commit

Permalink
Generated version 0.37.0
Browse files Browse the repository at this point in the history
This commit was automatically created by a GitHub Action to generate version 0.37.0 of this library.
  • Loading branch information
devexperience committed Sep 4, 2024
1 parent b70c63a commit 981223e
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions docs/MxPlatformApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -7538,7 +7538,7 @@ Name | Type | Description | Notes
Update account by member

This endpoint allows you to update certain attributes of an `account` resource.
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`.

### Example

Expand Down Expand Up @@ -7576,7 +7576,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
account_guid = 'ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1' # str | The unique id for an `account`.
member_guid = 'MBR-7c6f361b-e582-15b6-60c0-358f12466b4b' # str | The unique id for a `member`.
user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54' # str | The unique id for a `user`.
account_update_request_body = mx_platform_python.AccountUpdateRequestBody() # AccountUpdateRequestBody | Account object to be created with optional parameters (is_hidden)
account_update_request_body = mx_platform_python.AccountUpdateRequestBody() # AccountUpdateRequestBody |

try:
# Update account by member
Expand All @@ -7596,7 +7596,7 @@ Name | Type | Description | Notes
**account_guid** | **str**| The unique id for an `account`. |
**member_guid** | **str**| The unique id for a `member`. |
**user_guid** | **str**| The unique id for a `user`. |
**account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md)| Account object to be created with optional parameters (is_hidden) |
**account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md)| |

### Return type

Expand Down
2 changes: 1 addition & 1 deletion mx_platform_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "0.36.0"
__version__ = "0.37.0"

# import apis into sdk package
from mx_platform_python.api.budgets_api import BudgetsApi
Expand Down
12 changes: 6 additions & 6 deletions mx_platform_python/api/mx_platform_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14261,10 +14261,10 @@ def resume_aggregation_with_http_info(self, member_guid : Annotated[StrictStr, F
_request_auth=_params.get('_request_auth'))

@validate_arguments
def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : Annotated[AccountUpdateRequestBody, Field(..., description="Account object to be created with optional parameters (is_hidden)")], **kwargs) -> AccountResponseBody: # noqa: E501
def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : AccountUpdateRequestBody, **kwargs) -> AccountResponseBody: # noqa: E501
"""Update account by member # noqa: E501

This endpoint allows you to update certain attributes of an `account` resource. # noqa: E501
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

Expand All @@ -14277,7 +14277,7 @@ def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(...
:type member_guid: str
:param user_guid: The unique id for a `user`. (required)
:type user_guid: str
:param account_update_request_body: Account object to be created with optional parameters (is_hidden) (required)
:param account_update_request_body: (required)
:type account_update_request_body: AccountUpdateRequestBody
:param async_req: Whether to execute the request asynchronously.
:type async_req: bool, optional
Expand All @@ -14297,10 +14297,10 @@ def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(...
return self.update_account_by_member_with_http_info(account_guid, member_guid, user_guid, account_update_request_body, **kwargs) # noqa: E501

@validate_arguments
def update_account_by_member_with_http_info(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : Annotated[AccountUpdateRequestBody, Field(..., description="Account object to be created with optional parameters (is_hidden)")], **kwargs) -> ApiResponse: # noqa: E501
def update_account_by_member_with_http_info(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : AccountUpdateRequestBody, **kwargs) -> ApiResponse: # noqa: E501
"""Update account by member # noqa: E501

This endpoint allows you to update certain attributes of an `account` resource. # noqa: E501
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

Expand All @@ -14313,7 +14313,7 @@ def update_account_by_member_with_http_info(self, account_guid : Annotated[Stric
:type member_guid: str
:param user_guid: The unique id for a `user`. (required)
:type user_guid: str
:param account_update_request_body: Account object to be created with optional parameters (is_hidden) (required)
:param account_update_request_body: (required)
:type account_update_request_body: AccountUpdateRequestBody
:param async_req: Whether to execute the request asynchronously.
:type async_req: bool, optional
Expand Down
2 changes: 1 addition & 1 deletion mx_platform_python/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/0.36.0/python'
self.user_agent = 'OpenAPI-Generator/0.37.0/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion mx_platform_python/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.1.0\n"\
"SDK Package Version: 0.36.0".\
"SDK Package Version: 0.37.0".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion openapi/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
packageName: mx_platform_python
packageUrl: https://pypi.org/project/mx-platform-python
packageVersion: 0.36.0
packageVersion: 0.37.0
projectName: mx-platform-python
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mx_platform_python"
version = "0.36.0"
version = "0.37.0"
description = "MX Platform API"
authors = ["MX Platform API <team@openapitools.org>"]
license = "NoLicense"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "mx-platform-python"
VERSION = "0.36.0"
VERSION = "0.37.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down

0 comments on commit 981223e

Please sign in to comment.