in juneau-petstore-api/src/main/java/org/apache/juneau/petstore/dto/Pet.java [84:92]
public Pet apply(UpdatePet x) {
this.id = x.getId();
this.name = x.getName();
this.price = x.getPrice();
this.species = x.getSpecies();
this.tags = x.getTags() == null ? null : new ArrayList<>(Arrays.asList(x.getTags()));
this.status = x.getStatus();
return this;
}