UNPKG

yimultiscreenserver-sdk-web-migration

Version:

YiMultiScreenServer SDK for Web

27 lines 795 B
export class P2PKeyVO { constructor() { this.initAppString = ""; this.did = ""; this.p2pKey = ""; this.crcKey = ""; this.apiLicense = ""; } equals(o) { return o instanceof P2PKeyVO && this.initAppString === o.initAppString && this.did === o.did && this.p2pKey === o.p2pKey && this.crcKey === o.crcKey && this.apiLicense === o.apiLicense; } toString() { return `P2PKeyVO{` + `initAppString='${this.initAppString}', ` + `did='${this.did}', ` + `p2pKey='${this.p2pKey}', ` + `crcKey='${this.crcKey}', ` + `apiLicense='${this.apiLicense}'` + `}`; } } //# sourceMappingURL=P2PKeyVO.js.map