Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

File metadata and controls

29 lines (20 loc) · 1.17 KB

InsightsRepositoryProjectMappings

Properties

Name Type Description Notes
mappings List[InsightsRepositoryProject]

Example

from launchdarkly_api.models.insights_repository_project_mappings import InsightsRepositoryProjectMappings

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

# convert the object into a dict
insights_repository_project_mappings_dict = insights_repository_project_mappings_instance.to_dict()
# create an instance of InsightsRepositoryProjectMappings from a dict
insights_repository_project_mappings_from_dict = InsightsRepositoryProjectMappings.from_dict(insights_repository_project_mappings_dict)

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