11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { StorageType } from './StorageType';
|
|
export type Image = {
|
|
id?: number;
|
|
storage_type?: StorageType;
|
|
image_path?: string;
|
|
};
|
|
|