Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.67 KB

File metadata and controls

39 lines (30 loc) · 1.67 KB

RepositoryRep

Properties

Name Type Description Notes
name str The repository name
source_link str A URL to access the repository [optional]
commit_url_template str A template for constructing a valid URL to view the commit [optional]
hunk_url_template str A template for constructing a valid URL to view the hunk [optional]
type str The type of repository
default_branch str The repository's default branch
enabled bool Whether or not a repository is enabled for code reference scanning
version int The version of the repository's saved information
branches List[BranchRep] An array of the repository's branches that have been scanned for code references [optional]
links Dict[str, object]
access Access [optional]

Example

from launchdarkly_api.models.repository_rep import RepositoryRep

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

# convert the object into a dict
repository_rep_dict = repository_rep_instance.to_dict()
# create an instance of RepositoryRep from a dict
repository_rep_from_dict = RepositoryRep.from_dict(repository_rep_dict)

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