yimultiscreenserver-sdk-web
Version:
YiMultiScreenServer SDK for Web
19 lines (15 loc) • 417 B
text/typescript
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}` +
`}`;
}
}