Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

SdkKeysForGetSdkKeys

Properties

Name Type Description Notes
links SdkKeysSelfLink [optional]
items List[SdkKey]
total_count int The total number of SDK keys matching the query, before pagination.

Example

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)

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