| Name |
Type |
Description |
Notes |
| title |
str |
|
|
| description |
str |
|
|
| employee_id |
str |
|
|
| id |
WTWalletPageViewId |
|
|
| merchant_id |
str |
|
|
| created_at |
datetime |
|
|
| updated_at |
datetime |
|
|
| is_active |
bool |
|
|
| api_key |
str |
The API Key that is generated by the server. This will be sent only once after creation of an API Key in the response. Will always be empty otherwise. |
[optional] |
from wallet.models.wt_employee_api_key import WTEmployeeAPIKey
# TODO update the JSON string below
json = "{}"
# create an instance of WTEmployeeAPIKey from a JSON string
wt_employee_api_key_instance = WTEmployeeAPIKey.from_json(json)
# print the JSON string representation of the object
print WTEmployeeAPIKey.to_json()
# convert the object into a dict
wt_employee_api_key_dict = wt_employee_api_key_instance.to_dict()
# create an instance of WTEmployeeAPIKey from a dict
wt_employee_api_key_form_dict = wt_employee_api_key.from_dict(wt_employee_api_key_dict)
[Back to Model list] [Back to API list] [Back to README]