public CreatePet()

in juneau-petstore-api/src/main/java/org/apache/juneau/petstore/dto/CreatePet.java [48:53]


	public CreatePet(String name, float price, Species species, String[] tags) {
		this.name = name;
		this.price = price;
		this.species = species;
		this.tags = tags;
	}