Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

File metadata and controls

33 lines (24 loc) · 1.31 KB

ViewLinkedResourceDetails

Properties

Name Type Description Notes
view View [optional]
flag ExpandedFlag [optional]
segment ExpandedSegment [optional]
ai_config ExpandedAIConfig [optional]
metric ExpandedMetric [optional]

Example

from launchdarkly_api.models.view_linked_resource_details import ViewLinkedResourceDetails

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

# convert the object into a dict
view_linked_resource_details_dict = view_linked_resource_details_instance.to_dict()
# create an instance of ViewLinkedResourceDetails from a dict
view_linked_resource_details_from_dict = ViewLinkedResourceDetails.from_dict(view_linked_resource_details_dict)

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