yimultiscreenserver-sdk-web
Version:
YiMultiScreenServer SDK for Web
15 lines • 400 B
JavaScript
export class CastSessionResponse {
constructor() {
this.castSessionId = -1;
}
equals(o) {
return o instanceof CastSessionResponse &&
this.castSessionId === o.castSessionId;
}
toString() {
return `CastSessionResponse{` +
`castSessionId=${this.castSessionId}` +
`}`;
}
}
//# sourceMappingURL=CastSessionResponse.js.map