30 lines
989 B
Markdown
30 lines
989 B
Markdown
# DomainSuccessResponse
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**message** | **str** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from openapi_client.models.domain_success_response import DomainSuccessResponse
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of DomainSuccessResponse from a JSON string
|
|
domain_success_response_instance = DomainSuccessResponse.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(DomainSuccessResponse.to_json())
|
|
|
|
# convert the object into a dict
|
|
domain_success_response_dict = domain_success_response_instance.to_dict()
|
|
# create an instance of DomainSuccessResponse from a dict
|
|
domain_success_response_from_dict = DomainSuccessResponse.from_dict(domain_success_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)
|
|
|
|
|