Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 987 Bytes

File metadata and controls

31 lines (22 loc) · 987 Bytes

Integrations

Properties

Name Type Description Notes
links Dict[str, Link] [optional]
items List[Integration] [optional]
key str [optional]

Example

from launchdarkly_api.models.integrations import Integrations

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

# convert the object into a dict
integrations_dict = integrations_instance.to_dict()
# create an instance of Integrations from a dict
integrations_from_dict = Integrations.from_dict(integrations_dict)

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