Backstage
    Preparing search index...

    Object describing a user's role on resources like commits or pull requests.

    interface Participant {
        approved?: boolean;
        participated_on?: string;
        role?: Models.ParticipantRoleEnum;
        state?: Models.ParticipantStateEnum;
        type: string;
        user?: Account;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    approved?: boolean
    participated_on?: string

    The ISO8601 timestamp of the participant's action. For approvers, this is the time of their approval. For commenters and pull request reviewers who are not approvers, this is the time they last commented, or null if they have not commented.

    type: string
    user?: Account