@Test
 public void testListHostedZones1() {
   ListHostedZonesRequest req = new ListHostedZonesRequest();
   // req.setMaxItems("1");
   req.setMarker("ED3E987ACA7F41CB935273F45C7BBF10s");
   this.getRoute53Client().listHostedZones(req);
 }
  @Override
  public boolean equals(Object obj) {
    if (this == obj) return true;
    if (obj == null) return false;

    if (obj instanceof ListHostedZonesRequest == false) return false;
    ListHostedZonesRequest other = (ListHostedZonesRequest) obj;
    if (other.getMarker() == null ^ this.getMarker() == null) return false;
    if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false)
      return false;
    if (other.getMaxItems() == null ^ this.getMaxItems() == null) return false;
    if (other.getMaxItems() != null && other.getMaxItems().equals(this.getMaxItems()) == false)
      return false;
    if (other.getDelegationSetId() == null ^ this.getDelegationSetId() == null) return false;
    if (other.getDelegationSetId() != null
        && other.getDelegationSetId().equals(this.getDelegationSetId()) == false) return false;
    return true;
  }