interface ActivityTypeGitPushed {
    content: {
        change_type: "create" | "update" | "delete";
        ref: string;
        repository: {
            description: null;
            id: number;
            name: string;
        };
        revision_count: number;
        revision_type: "commit";
        revisions: {
            comment: string;
            rev: string;
        }[];
    };
    created?: string;
    createdUser?: User;
    id: number;
    notifications?: ActivityNotification[];
    project?: ActivityProject;
    type: 12;
}

Hierarchy

  • ActivityBase
    • ActivityTypeGitPushed

Properties

content: {
    change_type: "create" | "update" | "delete";
    ref: string;
    repository: {
        description: null;
        id: number;
        name: string;
    };
    revision_count: number;
    revision_type: "commit";
    revisions: {
        comment: string;
        rev: string;
    }[];
}
created?: string
createdUser?: User
id: number
notifications?: ActivityNotification[]
project?: ActivityProject
type: 12