ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface EdiCertificate

    interface EdiCertificate {
        id: string;
        partnerId: string;
        name: string;
        description?: string | null;
        type: string;
        purpose: string;
        serialNumber?: string | null;
        issuer?: string | null;
        subject?: string | null;
        fingerprint?: string | null;
        validFrom: string;
        validTo: string;
        isActive: boolean;
        autoRenew: boolean;
        keyAlgorithm?: string | null;
        keySize?: number | null;
        expiryAlertDays: number;
        lastAlertSentAt?: string | null;
        createdAt: string;
        updatedAt: string;
    }
    Index

    Properties

    id: string
    partnerId: string
    name: string
    description?: string | null
    type: string
    purpose: string
    serialNumber?: string | null
    issuer?: string | null
    subject?: string | null
    fingerprint?: string | null
    validFrom: string
    validTo: string
    isActive: boolean
    autoRenew: boolean
    keyAlgorithm?: string | null
    keySize?: number | null
    expiryAlertDays: number
    lastAlertSentAt?: string | null
    createdAt: string
    updatedAt: string