pub struct CCAssetCodeRepoMetrics {Show 14 fields
pub unit: String,
pub timestamp: i64,
pub type_: String,
pub asset_id: i32,
pub asset_symbol: String,
pub total_contributors: i32,
pub total_forks: i32,
pub total_stars: i32,
pub total_subscribers: i32,
pub total_open_issues: Option<i32>,
pub total_closed_issues: i32,
pub total_open_pull_requests: i32,
pub total_closed_pull_requests: i32,
pub code_repositories: Vec<CCAssetCodeRepository>,
}
Expand description
Asset: Historical: Code Repository Metrics Day
Fields§
§unit: String
The unit of the historical period update: HOUR for hour and DAY for day.
timestamp: i64
The timestamp in seconds of the histo period, for hour it would be start of the hour and for daily it is 00:00 GMT/UTC.
type_: String
The type of the message.
asset_id: i32
The unique identifier for the asset.
asset_symbol: String
Internal mapped symbol for a specific asset.
total_contributors: i32
The total number of contributors across all code repositories associated with this asset. A contributor is a users who has contributed to a project by making changes or improvements to the project’s codebase, having their changes accepted and merged, and is acknowledged for their contributions in the project’s development history.
total_forks: i32
The total number of forks across all code repositories associated with this asset. A fork in GitHub is a feature that allows users to create a personal copy of another repository, enabling them to modify, experiment with, or contribute to the project without affecting the original work.
total_stars: i32
The total number of stars received across all code repositories associated with this asset. A star is when a GitHub user bookmarks or wants to show appreciation for a particular repository, much like a “like” or “favorite” function on other social media platforms.
total_subscribers: i32
The total number of subscribers across all code repositories associated with this asset. A subscriber is a user who has chosen to receive notifications for updates or changes made to a specific repository, allowing them to closely follow the development and discussions of a project.
total_open_issues: Option<i32>
The total number of open issues across all code repositories associated with this asset. An open issue is a reported problem, suggestion, or task related to a repository that has not been resolved or closed yet, providing a platform for users to track and discuss the ongoing development and improvements of a project.
total_closed_issues: i32
The total number of closed issues across all code repositories associated with this asset. A closed issue is a reported problem, suggestion, or task related to a repository that have been resolved or deemed no longer relevant, providing a record of past challenges and solutions within the project development.
total_open_pull_requests: i32
The total number of open pull requests across all code repositories associated with this asset. An open pull request on GitHub is a proposed change to a repository’s codebase that is open for review and discussion, integrating the proposed modifications.
total_closed_pull_requests: i32
The total number of closed pull requests across all code repositories associated with this asset. A closed pull request is a proposed change to a repository’s codebase that has been either accepted and merged into the codebase, rejected by the maintainers, or withdrawn by the submitter, providing a record of changes that were suggested and their outcomes in the project’s development history.
code_repositories: Vec<CCAssetCodeRepository>
An array with all the data for each code repository used to calculate the total stats.