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}` +
        `}`;
    }

}