2018-03-29 19:58:36 +00:00
|
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
interface Book {
|
2018-03-30 04:16:04 +00:00
|
|
|
id?: string;
|
|
|
|
author?: string;
|
|
|
|
title?: string;
|
|
|
|
description?: string;
|
|
|
|
page_count?: number;
|
2018-03-30 18:53:38 +00:00
|
|
|
not_models?: number[];
|
2018-03-30 04:16:04 +00:00
|
|
|
camelCase?: string;
|
|
|
|
created_at?: any;
|
|
|
|
updated_at?: any;
|
2018-03-29 19:58:36 +00:00
|
|
|
}
|