Type alias CertificationRange

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

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: UTCDateMini

    End time in UTC

  • key: PublicKey

    The public key object that certified this particular time range.

  • start: UTCDateMini

    Start time in UTC