'int', 'category' => 'Category', 'name' => 'string', 'photoUrls' => 'array[string]', 'tags' => 'array[Tag]', 'status' => 'string' ); /** * Unique identifier for the Pet */ public $id; // int /** * Category the pet is in */ public $category; // Category /** * Friendly name of the pet */ public $name; // string /** * Image URLs */ public $photoUrls; // array[string] /** * Tags assigned to this pet */ public $tags; // array[Tag] /** * pet status in the store */ public $status; // string }