@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
31 lines (30 loc) • 726 B
TypeScript
export interface DssCertificateStatus {
Value: string;
RevocationInfo?: any;
PinCode?: any;
ActiveCertId: number;
}
export interface IDssCertificateInfo {
CertificateType: string;
ID: number;
DName: string;
CertificateBase64: string;
Status: DssCertificateStatus;
IsDefault: boolean;
CertificateAuthorityID: number;
CertificateAuthorityName?: string;
CspID: string;
HashAlgorithms: string[];
ProviderName?: any;
ProviderType: number;
PrivateKeyNotBefore?: any;
PrivateKeyNotAfter?: any;
HasPin: boolean;
FriendlyName: string;
}
export interface Status {
Value: string;
RevocationInfo?: any;
PinCode?: any;
ActiveCertId: number;
}