UNPKG

@4success/nfse-campinas

Version:
33 lines (32 loc) 753 B
import { PgpData } from './PgpData'; import { SpkiData } from './SpkiData'; import { KeyValue } from './KeyValue'; import { RetrievalMethod } from './RetrievalMethod'; import { X509Data } from './X509Data'; /** * KeyInfo * @targetNSAlias `tns` * @targetNamespace `http://www.w3.org/2000/09/xmldsig#` */ export interface KeyInfo { /** a */ 0?: string; /** n */ 1?: string; /** y */ 2?: string; /** PGPData */ PGPData?: PgpData; /** SPKIData */ SPKIData?: SpkiData; /** xs:string */ KeyName?: string; /** KeyValue */ KeyValue?: KeyValue; /** RetrievalMethod */ RetrievalMethod?: RetrievalMethod; /** X509Data */ X509Data?: X509Data; /** xs:string */ MgmtData?: string; }