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