/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { EntityHeader } from './EntityHeader'; /** * Response of EntityHeaders for the children of a given parent Entity * @export * @interface EntityChildrenResponse */ export interface EntityChildrenResponse { /** * The headers of each child. * @type {Array} * @memberof EntityChildrenResponse */ page?: Array; /** * Token that can be used to get the next page. Null if there are no more results. * @type {string} * @memberof EntityChildrenResponse */ nextPageToken?: string; /** * The total number of children with the requested parentId and types. Only returned if requested. * @type {number} * @memberof EntityChildrenResponse */ totalChildCount?: number; /** * The sum of the file sizes (bytes) with the requested parentId and types. Only returned if requested. * @type {number} * @memberof EntityChildrenResponse */ sumFileSizesBytes?: number; } /** * Check if a given object implements the EntityChildrenResponse interface. */ export declare function instanceOfEntityChildrenResponse(value: object): value is EntityChildrenResponse; export declare function EntityChildrenResponseFromJSON(json: any): EntityChildrenResponse; export declare function EntityChildrenResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityChildrenResponse; export declare function EntityChildrenResponseToJSON(json: any): EntityChildrenResponse; export declare function EntityChildrenResponseToJSONTyped(value?: EntityChildrenResponse | null, ignoreDiscriminator?: boolean): any;