public equalTo(url: string): RequestBuilder {
    const urlType = this.path ? 'urlPath' : 'url';
    this.jsonObject = { [urlType]: url };
    return this.requestBuilder;
  }