/** * Swagger Petstore - OpenAPI 3.0Lib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { Category } from './category'; import { PetStatusEnum } from './petStatusEnum'; import { Tag } from './tag'; export interface Pet { name: string; photoUrls: string[]; id?: bigint; category?: Category; tags?: Tag[]; /** pet status in the store */ petStatus?: PetStatusEnum; } export declare const petSchema: Schema;