UNPKG

yimultiscreenserver-sdk-web

Version:

YiMultiScreenServer SDK for Web

19 lines (15 loc) 417 B
export class CastSessionResponse { castSessionId: number; constructor() { this.castSessionId = -1; } equals(o: any): boolean { return o instanceof CastSessionResponse && this.castSessionId === o.castSessionId; } toString(): string { return `CastSessionResponse{` + `castSessionId=${this.castSessionId}` + `}`; } }