-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from mxenabled/openapi-generator-0.36.0
Generated version 0.36.0
- Loading branch information
Showing
104 changed files
with
8,422 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# BudgetCreateRequest | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**category_guid** | **str** | Unique identifier of the category. | | ||
**parent_guid** | **str** | Unique identifier of the parent budget. This is only required when creating a budget on a sub-category. | | ||
**amount** | **int** | Amount of the budget. | [optional] | ||
**metadata** | **str** | Additional information a partner can store on the budget. | [optional] | ||
**skip_webhook** | **bool** | When set to true, this parameter will prevent a webhook from being triggered by the request. | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.budget_create_request import BudgetCreateRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BudgetCreateRequest from a JSON string | ||
budget_create_request_instance = BudgetCreateRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print BudgetCreateRequest.to_json() | ||
|
||
# convert the object into a dict | ||
budget_create_request_dict = budget_create_request_instance.to_dict() | ||
# create an instance of BudgetCreateRequest from a dict | ||
budget_create_request_form_dict = budget_create_request.from_dict(budget_create_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# BudgetCreateRequestBody | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**budget** | [**BudgetCreateRequest**](BudgetCreateRequest.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.budget_create_request_body import BudgetCreateRequestBody | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BudgetCreateRequestBody from a JSON string | ||
budget_create_request_body_instance = BudgetCreateRequestBody.from_json(json) | ||
# print the JSON string representation of the object | ||
print BudgetCreateRequestBody.to_json() | ||
|
||
# convert the object into a dict | ||
budget_create_request_body_dict = budget_create_request_body_instance.to_dict() | ||
# create an instance of BudgetCreateRequestBody from a dict | ||
budget_create_request_body_form_dict = budget_create_request_body.from_dict(budget_create_request_body_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# BudgetResponse | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**amount** | **float** | A goal amount set by the user for a category's transaction total during a month. | [optional] | ||
**category_guid** | **str** | Unique identifier for the budget category. Defined by MX. | [optional] | ||
**created_at** | **str** | Date and time the budget was created, represented in ISO 8601 format with timestamp. | [optional] | ||
**guid** | **str** | Unique identifier for the budget. Defined by MX. | [optional] | ||
**is_exceeded** | **bool** | If the budget has been exceeded, this field will be true. Otherwise, this field will be false. | [optional] | ||
**is_off_track** | **bool** | If the budget is off track, this field will be true. Otherwise, this field will be false. | [optional] | ||
**metadata** | **str** | Additional information a partner can store on the budget. | [optional] | ||
**name** | **str** | The name of the budget that is visible to the user (ie \"Food\", \"Bills\", \"Entertainment\", etc). | [optional] | ||
**off_track_percentage** | **float** | The percentage amount of off track spending. (Deprecated). | [optional] | ||
**parent_guid** | **str** | Unique identifier for the parent budget. Defined by MX. | [optional] | ||
**percent_spent** | **float** | The percentage of a budget that has been spent during the current calendar month Calculated as the transaction total divided by the amount and then multiplied by 100.A value of zero will be returned when `amount` is zero. | [optional] | ||
**projected_spending** | **float** | The projected amount of spending for the budget. | [optional] | ||
**revision** | **int** | The revision number of this budget record. | [optional] | ||
**transaction_total** | **object** | The cumulative amount of all transactions under the budget. | [optional] | ||
**updated_at** | **object** | Date and time the budget was updated, represented in ISO 8601 format with timestamp. | [optional] | ||
**user_guid** | **object** | Unique identifier for the user. Defined by MX. | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.budget_response import BudgetResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BudgetResponse from a JSON string | ||
budget_response_instance = BudgetResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print BudgetResponse.to_json() | ||
|
||
# convert the object into a dict | ||
budget_response_dict = budget_response_instance.to_dict() | ||
# create an instance of BudgetResponse from a dict | ||
budget_response_form_dict = budget_response.from_dict(budget_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# BudgetResponseBody | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**budget** | [**BudgetResponse**](BudgetResponse.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.budget_response_body import BudgetResponseBody | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BudgetResponseBody from a JSON string | ||
budget_response_body_instance = BudgetResponseBody.from_json(json) | ||
# print the JSON string representation of the object | ||
print BudgetResponseBody.to_json() | ||
|
||
# convert the object into a dict | ||
budget_response_body_dict = budget_response_body_instance.to_dict() | ||
# create an instance of BudgetResponseBody from a dict | ||
budget_response_body_form_dict = budget_response_body.from_dict(budget_response_body_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# BudgetUpdateRequest | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**amount** | **int** | Amount of the budget. | [optional] | ||
**metadata** | **str** | Additional information a partner can store on the budget. | [optional] | ||
**skip_webhook** | **bool** | When set to true, this parameter will prevent a webhook from being triggered by the request. | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.budget_update_request import BudgetUpdateRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BudgetUpdateRequest from a JSON string | ||
budget_update_request_instance = BudgetUpdateRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print BudgetUpdateRequest.to_json() | ||
|
||
# convert the object into a dict | ||
budget_update_request_dict = budget_update_request_instance.to_dict() | ||
# create an instance of BudgetUpdateRequest from a dict | ||
budget_update_request_form_dict = budget_update_request.from_dict(budget_update_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.