interface DeploymentApprovalPendingEvent {
    approval?: ReleaseApproval;
    approvalOptions?: ApprovalOptions;
    attemptId?: number;
    completedApprovals?: ReleaseApproval[];
    data?: { [key: string]: any };
    deployment?: Deployment;
    id?: number;
    isMultipleRankApproval?: boolean;
    pendingApprovals?: ReleaseApproval[];
    project?: ProjectReference;
    release?: Release;
    stageName?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

approval?: ReleaseApproval
approvalOptions?: ApprovalOptions
attemptId?: number
completedApprovals?: ReleaseApproval[]
data?: { [key: string]: any }
deployment?: Deployment
id?: number
isMultipleRankApproval?: boolean
pendingApprovals?: ReleaseApproval[]
release?: Release
stageName?: string
url?: string