/** * This file was auto-generated by Fern from our API Definition. */ import * as PetstoreApi from ".."; export interface Pet { id?: number; name: string; category?: PetstoreApi.Category; photoUrls: string[]; tags?: PetstoreApi.Tag[]; /** pet status in the store */ status?: PetstoreApi.PetStatus; }