/** * Swagger Petstore - OpenAPI 3.0Lib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { number, object, optional, Schema, string } from '../schema'; export interface PetImage { code?: number; type?: string; message?: string; } export const petImageSchema: Schema = object({ code: ['code', optional(number())], type: ['type', optional(string())], message: ['message', optional(string())], });