in src/main/java/com/example/swaggercodegenexample/dtos/VisitWithPetDto.java [15:21]
public VisitWithPetDto(Long id,
PetDto pet,
OffsetDateTime date) {
this.id = id;
this.pet = pet;
this.date = date;
}