| Name |
Type |
Description |
Notes |
| public_key |
str |
|
[optional] |
from launchdarkly_api.models.complete_setup_post_body import CompleteSetupPostBody
# TODO update the JSON string below
json = "{}"
# create an instance of CompleteSetupPostBody from a JSON string
complete_setup_post_body_instance = CompleteSetupPostBody.from_json(json)
# print the JSON string representation of the object
print(CompleteSetupPostBody.to_json())
# convert the object into a dict
complete_setup_post_body_dict = complete_setup_post_body_instance.to_dict()
# create an instance of CompleteSetupPostBody from a dict
complete_setup_post_body_from_dict = CompleteSetupPostBody.from_dict(complete_setup_post_body_dict)
[Back to Model list] [Back to API list] [Back to README]