| Name | Type | Description | Notes |
|---|---|---|---|
| links | SdkKeysSelfLink | [optional] | |
| items | List[SdkKey] | ||
| total_count | int | The total number of SDK keys matching the query, before pagination. |
from launchdarkly_api.models.sdk_keys_for_get_sdk_keys import SdkKeysForGetSdkKeys
# TODO update the JSON string below
json = "{}"
# create an instance of SdkKeysForGetSdkKeys from a JSON string
sdk_keys_for_get_sdk_keys_instance = SdkKeysForGetSdkKeys.from_json(json)
# print the JSON string representation of the object
print(SdkKeysForGetSdkKeys.to_json())
# convert the object into a dict
sdk_keys_for_get_sdk_keys_dict = sdk_keys_for_get_sdk_keys_instance.to_dict()
# create an instance of SdkKeysForGetSdkKeys from a dict
sdk_keys_for_get_sdk_keys_from_dict = SdkKeysForGetSdkKeys.from_dict(sdk_keys_for_get_sdk_keys_dict)