/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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. */ import type { ContentDto } from './ContentDto'; import type { ResourceLink } from './ResourceLink'; import type { StatusInfoDto } from './StatusInfoDto'; /** * * @export * @interface ContentsDto */ export interface ContentsDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof ContentsDto */ links: { [key: string]: ResourceLink; }; /** * The total number of content items. * @type {number} * @memberof ContentsDto */ total: number; /** * The content items. * @type {Array} * @memberof ContentsDto */ items: Array; /** * The possible statuses. * @type {Array} * @memberof ContentsDto */ statuses: Array; } /** * Check if a given object implements the ContentsDto interface. */ export declare function instanceOfContentsDto(value: any): value is ContentsDto; export declare function ContentsDtoFromJSON(json: any): ContentsDto; export declare function ContentsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ContentsDto; export declare function ContentsDtoToJSON(value?: ContentsDto | null, _ignoreDiscriminator?: boolean): any;