Type Alias CertificationRange

CertificationRange: {
    call: string;
    end: UTCDate;
    key: PublicKey;
    start: UTCDate;
}

Describes a timespan which a certain public key is entitled to use for certifying a QSO, as certified by trusted keys. This is the type of the return value of getCertifications method.

Type declaration

  • call: string

    Callsign, with no prefixes or suffixes

  • end: UTCDate

    End time in UTC

  • key: PublicKey

    The public key object that certified this particular time range.

  • start: UTCDate

    Start time in UTC