Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

PublicNameAvailabilityResponse

Response for public name availability check.

Properties

Name Type Description Notes
name str The public name that was checked
available bool Whether the name is available for use

Example

from mixpeek.models.public_name_availability_response import PublicNameAvailabilityResponse

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

# convert the object into a dict
public_name_availability_response_dict = public_name_availability_response_instance.to_dict()
# create an instance of PublicNameAvailabilityResponse from a dict
public_name_availability_response_from_dict = PublicNameAvailabilityResponse.from_dict(public_name_availability_response_dict)

[Back to Model list] [Back to API list] [Back to README]