Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# if the openapi spec gets copied in
openapi.yaml

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
19 changes: 18 additions & 1 deletion docs/AccountRecovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,28 @@


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**email** | **str** | The user's e-mail address |
**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]

## Example

```python
from ibutsu_client.models.account_recovery import AccountRecovery

# TODO update the JSON string below
json = "{}"
# create an instance of AccountRecovery from a JSON string
account_recovery_instance = AccountRecovery.from_json(json)
# print the JSON string representation of the object
print(AccountRecovery.to_json())

# convert the object into a dict
account_recovery_dict = account_recovery_instance.to_dict()
# create an instance of AccountRecovery from a dict
account_recovery_from_dict = AccountRecovery.from_dict(account_recovery_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)


19 changes: 18 additions & 1 deletion docs/AccountRegistration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,29 @@


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**email** | **str** | The user's e-mail address |
**password** | **str** | The user's password |
**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]

## Example

```python
from ibutsu_client.models.account_registration import AccountRegistration

# TODO update the JSON string below
json = "{}"
# create an instance of AccountRegistration from a JSON string
account_registration_instance = AccountRegistration.from_json(json)
# print the JSON string representation of the object
print(AccountRegistration.to_json())

# convert the object into a dict
account_registration_dict = account_registration_instance.to_dict()
# create an instance of AccountRegistration from a dict
account_registration_from_dict = AccountRegistration.from_dict(account_registration_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)


19 changes: 18 additions & 1 deletion docs/AccountReset.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,29 @@


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**activation_code** | **str** | The activation code generated by Ibutsu |
**password** | **str** | The user's password |
**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]

## Example

```python
from ibutsu_client.models.account_reset import AccountReset

# TODO update the JSON string below
json = "{}"
# create an instance of AccountReset from a JSON string
account_reset_instance = AccountReset.from_json(json)
# print the JSON string representation of the object
print(AccountReset.to_json())

# convert the object into a dict
account_reset_dict = account_reset_instance.to_dict()
# create an instance of AccountReset from a dict
account_reset_from_dict = AccountReset.from_dict(account_reset_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)


Loading
Loading