Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 982 Bytes

File metadata and controls

30 lines (21 loc) · 982 Bytes

SdkVersionRep

Properties

Name Type Description Notes
sdk str The SDK name, or "Unknown"
version str The version number, or "Unknown"

Example

from launchdarkly_api.models.sdk_version_rep import SdkVersionRep

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

# convert the object into a dict
sdk_version_rep_dict = sdk_version_rep_instance.to_dict()
# create an instance of SdkVersionRep from a dict
sdk_version_rep_from_dict = SdkVersionRep.from_dict(sdk_version_rep_dict)

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