export class EmptyResponse {
    empty: string;

    constructor() {
        this.empty = "";
    }

    equals(o: any): boolean {
        return o instanceof EmptyResponse &&
        this.empty === o.empty;
    }
    
    toString(): string {
        return `EmptyResponse{` +
          `empty='${this.empty}'` +
        `}`;
    }
}