Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

SdkKeyPatch

Properties

Name Type Description Notes
name str (Optional)The human-readable name of the SDK key. [optional]
description str (Optional) The description of the SDK key. [optional]
expiry int [optional]

Example

from launchdarkly_api.models.sdk_key_patch import SdkKeyPatch

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

# convert the object into a dict
sdk_key_patch_dict = sdk_key_patch_instance.to_dict()
# create an instance of SdkKeyPatch from a dict
sdk_key_patch_from_dict = SdkKeyPatch.from_dict(sdk_key_patch_dict)

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