Representation of a ContributionNode that can be used for serialized to clients.

interface ClientContributionNode {
    children?: string[];
    contribution?: ClientContribution;
    parents?: string[];
}

Properties

children?: string[]

List of ids for contributions which are children to the current contribution.

contribution?: ClientContribution

Contribution associated with this node.

parents?: string[]

List of ids for contributions which are parents to the current contribution.