halo/ui/packages/api-client/src/models/listed-snapshot-dto.ts

43 lines
943 B
TypeScript

/* tslint:disable */
/* eslint-disable */
/**
* Halo Next API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import { ListedSnapshotSpec } from './listed-snapshot-spec';
// May contain unused imports in some cases
// @ts-ignore
import { Metadata } from './metadata';
/**
*
* @export
* @interface ListedSnapshotDto
*/
export interface ListedSnapshotDto {
/**
*
* @type {Metadata}
* @memberof ListedSnapshotDto
*/
'metadata': Metadata;
/**
*
* @type {ListedSnapshotSpec}
* @memberof ListedSnapshotDto
*/
'spec': ListedSnapshotSpec;
}