Properties

NameTypeDescriptionNotes
api_keysList[ApiKey]List of all API keys associated with the user

Example

from kalshi_python.models.get_api_keys_response import GetApiKeysResponse

# Create an instance with example data
get_api_keys_response_instance = GetApiKeysResponse(
    # Add required fields here
)

# Convert to JSON string
json_str = get_api_keys_response_instance.to_json()
print(json_str)

# Create from JSON string
get_api_keys_response_from_json = GetApiKeysResponse.from_json(json_str)

# Convert to dict
get_api_keys_response_dict = get_api_keys_response_instance.to_dict()

# Create from dict
get_api_keys_response_from_dict = GetApiKeysResponse.from_dict(get_api_keys_response_dict)
[Back to Model list] [Back to API list] [Back to README]