| Name | Type | Description | Notes |
|---|---|---|---|
| view | View | [optional] | |
| flag | ExpandedFlag | [optional] | |
| segment | ExpandedSegment | [optional] | |
| ai_config | ExpandedAIConfig | [optional] | |
| metric | ExpandedMetric | [optional] |
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)