| 12345678910111213141516171819 |
- import { __decorate } from "tslib";
- import { AsnProp, OctetString } from "@peculiar/asn1-schema";
- import { GeneralName } from "@peculiar/asn1-x509";
- export class SvceAuthInfo {
- constructor(params = {}) {
- this.service = new GeneralName();
- this.ident = new GeneralName();
- Object.assign(this, params);
- }
- }
- __decorate([
- AsnProp({ type: GeneralName })
- ], SvceAuthInfo.prototype, "service", void 0);
- __decorate([
- AsnProp({ type: GeneralName })
- ], SvceAuthInfo.prototype, "ident", void 0);
- __decorate([
- AsnProp({ type: OctetString, optional: true })
- ], SvceAuthInfo.prototype, "authInfo", void 0);
|