/** * 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 V2WikiMarkdownVersion contains the markdown file handle id and title of a specific version of a V2WikiPage * @export * @interface V2WikiMarkdownVersion */ export interface V2WikiMarkdownVersion { /** * The version of this snapshot in the wiki's history. * @type {string} * @memberof V2WikiMarkdownVersion */ version?: string; /** * The title of the wiki. * @type {string} * @memberof V2WikiMarkdownVersion */ title?: string; /** * The id of the S3FileHandle that helps locate the markdown file in S3. * @type {string} * @memberof V2WikiMarkdownVersion */ markdownFileHandleId?: string; /** * The list of attachment file handle ids of this page for this version. * @type {Array} * @memberof V2WikiMarkdownVersion */ attachmentFileHandleIds?: Array; } /** * Check if a given object implements the V2WikiMarkdownVersion interface. */ export declare function instanceOfV2WikiMarkdownVersion(value: object): value is V2WikiMarkdownVersion; export declare function V2WikiMarkdownVersionFromJSON(json: any): V2WikiMarkdownVersion; export declare function V2WikiMarkdownVersionFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2WikiMarkdownVersion; export declare function V2WikiMarkdownVersionToJSON(json: any): V2WikiMarkdownVersion; export declare function V2WikiMarkdownVersionToJSONTyped(value?: V2WikiMarkdownVersion | null, ignoreDiscriminator?: boolean): any;