Interface IUploadKeySignaturesResponse

interface IUploadKeySignaturesResponse {
    failures: Record<string, Record<string, {
        errcode: string;
        error: string;
    }>>;
}

Properties

Properties

failures: Record<string, Record<string, {
    errcode: string;
    error: string;
}>>