UNPKG

yimultiscreenserver-sdk-web-migration

Version:

YiMultiScreenServer SDK for Web

20 lines 656 B
import { AccountVO } from "../account/AccountVO"; import { CastSessionVO } from "./CastSessionVO"; export class CastAccountVO { constructor() { this.castSessionVO = new CastSessionVO(); this.accountVO = new AccountVO(); } equals(o) { return o instanceof CastAccountVO && this.castSessionVO.equals(o.castSessionVO) && this.accountVO.equals(o.accountVO); } toString() { return `CastAccountVO{` + `castSessionVO=${this.castSessionVO.toString()}, ` + `accountVO=${this.accountVO.toString()}` + `}`; } } //# sourceMappingURL=CastAccountVO.js.map