in juneau-petstore-api/src/main/java/org/apache/juneau/petstore/dto/Pet.java [70:76]
public Pet apply(CreatePet x) {
this.name = x.getName();
this.price = x.getPrice();
this.species = x.getSpecies();
this.tags = new ArrayList<>(Arrays.asList(x.getTags()));
return this;
}