Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

IntegrationDeliveryConfigurationLinks

Properties

Name Type Description Notes
var_self Link
parent Link
project Link
environment Link

Example

from launchdarkly_api.models.integration_delivery_configuration_links import IntegrationDeliveryConfigurationLinks

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

# convert the object into a dict
integration_delivery_configuration_links_dict = integration_delivery_configuration_links_instance.to_dict()
# create an instance of IntegrationDeliveryConfigurationLinks from a dict
integration_delivery_configuration_links_from_dict = IntegrationDeliveryConfigurationLinks.from_dict(integration_delivery_configuration_links_dict)

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