-
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.
This commit was automatically created by a GitHub Action to generate version 0.39.0 of this library.
- Loading branch information
devexperience
committed
Sep 17, 2024
1 parent
6525103
commit 2ef63c0
Showing
45 changed files
with
3,774 additions
and
6 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,34 @@ | ||
# MicrodepositRequest | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**account_number** | **str** | | | ||
**account_type** | **str** | | | ||
**routing_number** | **str** | | | ||
**account_name** | **str** | | [optional] | ||
**email** | **str** | | [optional] | ||
**first_name** | **str** | | [optional] | ||
**last_name** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.microdeposit_request import MicrodepositRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of MicrodepositRequest from a JSON string | ||
microdeposit_request_instance = MicrodepositRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print MicrodepositRequest.to_json() | ||
|
||
# convert the object into a dict | ||
microdeposit_request_dict = microdeposit_request_instance.to_dict() | ||
# create an instance of MicrodepositRequest from a dict | ||
microdeposit_request_form_dict = microdeposit_request.from_dict(microdeposit_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 @@ | ||
# MicrodepositRequestBody | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**micro_deposit** | [**MicrodepositRequest**](MicrodepositRequest.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.microdeposit_request_body import MicrodepositRequestBody | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of MicrodepositRequestBody from a JSON string | ||
microdeposit_request_body_instance = MicrodepositRequestBody.from_json(json) | ||
# print the JSON string representation of the object | ||
print MicrodepositRequestBody.to_json() | ||
|
||
# convert the object into a dict | ||
microdeposit_request_body_dict = microdeposit_request_body_instance.to_dict() | ||
# create an instance of MicrodepositRequestBody from a dict | ||
microdeposit_request_body_form_dict = microdeposit_request_body.from_dict(microdeposit_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,41 @@ | ||
# MicrodepositResponse | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**account_name** | **str** | | [optional] | ||
**account_number** | **str** | | [optional] | ||
**account_type** | **str** | | [optional] | ||
**email** | **str** | | [optional] | ||
**first_name** | **str** | | [optional] | ||
**last_name** | **str** | | [optional] | ||
**routing_number** | **str** | | [optional] | ||
**error_message** | **str** | | [optional] | ||
**guid** | **str** | | [optional] | ||
**institution_code** | **str** | | [optional] | ||
**institution_name** | **str** | | [optional] | ||
**status** | **str** | | [optional] | ||
**updated_at** | **str** | | [optional] | ||
**verified_at** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.microdeposit_response import MicrodepositResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of MicrodepositResponse from a JSON string | ||
microdeposit_response_instance = MicrodepositResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print MicrodepositResponse.to_json() | ||
|
||
# convert the object into a dict | ||
microdeposit_response_dict = microdeposit_response_instance.to_dict() | ||
# create an instance of MicrodepositResponse from a dict | ||
microdeposit_response_form_dict = microdeposit_response.from_dict(microdeposit_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 @@ | ||
# MicrodepositResponseBody | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**micro_deposit** | [**MicrodepositResponse**](MicrodepositResponse.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.microdeposit_response_body import MicrodepositResponseBody | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of MicrodepositResponseBody from a JSON string | ||
microdeposit_response_body_instance = MicrodepositResponseBody.from_json(json) | ||
# print the JSON string representation of the object | ||
print MicrodepositResponseBody.to_json() | ||
|
||
# convert the object into a dict | ||
microdeposit_response_body_dict = microdeposit_response_body_instance.to_dict() | ||
# create an instance of MicrodepositResponseBody from a dict | ||
microdeposit_response_body_form_dict = microdeposit_response_body.from_dict(microdeposit_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,29 @@ | ||
# MicrodepositVerifyRequest | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**deposit_amount_1** | **int** | | [optional] | ||
**deposit_amount_2** | **int** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.microdeposit_verify_request import MicrodepositVerifyRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of MicrodepositVerifyRequest from a JSON string | ||
microdeposit_verify_request_instance = MicrodepositVerifyRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print MicrodepositVerifyRequest.to_json() | ||
|
||
# convert the object into a dict | ||
microdeposit_verify_request_dict = microdeposit_verify_request_instance.to_dict() | ||
# create an instance of MicrodepositVerifyRequest from a dict | ||
microdeposit_verify_request_form_dict = microdeposit_verify_request.from_dict(microdeposit_verify_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 @@ | ||
# MicrodepositVerifyRequestBody | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**micro_deposit** | [**MicrodepositVerifyRequest**](MicrodepositVerifyRequest.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from mx_platform_python.models.microdeposit_verify_request_body import MicrodepositVerifyRequestBody | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of MicrodepositVerifyRequestBody from a JSON string | ||
microdeposit_verify_request_body_instance = MicrodepositVerifyRequestBody.from_json(json) | ||
# print the JSON string representation of the object | ||
print MicrodepositVerifyRequestBody.to_json() | ||
|
||
# convert the object into a dict | ||
microdeposit_verify_request_body_dict = microdeposit_verify_request_body_instance.to_dict() | ||
# create an instance of MicrodepositVerifyRequestBody from a dict | ||
microdeposit_verify_request_body_form_dict = microdeposit_verify_request_body.from_dict(microdeposit_verify_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) | ||
|
||
|
Oops, something went wrong.