Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.25 KB

File metadata and controls

35 lines (26 loc) · 1.25 KB

InsightsRepository

Properties

Name Type Description Notes
id UUID The repository ID
version int The repository version
key str The repository key
type str The repository type
url str The repository URL
main_branch str The repository main branch
projects ProjectSummaryCollection [optional]

Example

from launchdarkly_api.models.insights_repository import InsightsRepository

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

# convert the object into a dict
insights_repository_dict = insights_repository_instance.to_dict()
# create an instance of InsightsRepository from a dict
insights_repository_from_dict = InsightsRepository.from_dict(insights_repository_dict)

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