//
// Generated by @himenon/openapi-typescript-code-generator v1.0.9
//
// OpenApi : 3.1.0
//
// License : MIT
//
export namespace Schemas {
export interface Book {
author?: {
name?: string;
age?: string;
};
publisher?: {
name?: any;
address?: string;
};
metadata: {
description: string;
};
}
export type Author = {
name?: string;
age?: string;
};
export type Publisher = {
name?: any;
address?: string;
};
}
export interface Parameter$getBook {
/** Book ID */
id: string;
}
export interface Response$getBook$Status$200 {