from kalshi_python.models.create_api_key_response import CreateApiKeyResponse
# Create an instance with example data
create_api_key_response_instance = CreateApiKeyResponse(
# Add required fields here
)
# Convert to JSON string
json_str = create_api_key_response_instance.to_json()
print(json_str)
# Create from JSON string
create_api_key_response_from_json = CreateApiKeyResponse.from_json(json_str)
# Convert to dict
create_api_key_response_dict = create_api_key_response_instance.to_dict()
# Create from dict
create_api_key_response_from_dict = CreateApiKeyResponse.from_dict(create_api_key_response_dict)