/** * 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. */ /** * A WikiHeader contains basic metadata about a WikiPage. * @export * @interface V2WikiHeader */ export interface V2WikiHeader { /** * The ID of this wiki page. * @type {string} * @memberof V2WikiHeader */ id?: string; /** * The title to of this page. * @type {string} * @memberof V2WikiHeader */ title?: string; /** * The parentID to of this page. * @type {string} * @memberof V2WikiHeader */ parentId?: string; } /** * Check if a given object implements the V2WikiHeader interface. */ export declare function instanceOfV2WikiHeader(value: object): value is V2WikiHeader; export declare function V2WikiHeaderFromJSON(json: any): V2WikiHeader; export declare function V2WikiHeaderFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2WikiHeader; export declare function V2WikiHeaderToJSON(json: any): V2WikiHeader; export declare function V2WikiHeaderToJSONTyped(value?: V2WikiHeader | null, ignoreDiscriminator?: boolean): any;