/** * 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. */ /** * The WikiPage model object represent a single user managed wiki page. * @export * @interface V2WikiPage */ export interface V2WikiPage { /** * The ID of this wiki page. * @type {string} * @memberof V2WikiPage */ id?: string; /** * The etag of this object * @type {string} * @memberof V2WikiPage */ etag?: string; /** * The timestamp when this page was created. * @type {string} * @memberof V2WikiPage */ createdOn?: string; /** * The id of the user that created this page. * @type {string} * @memberof V2WikiPage */ createdBy?: string; /** * The timestamp when this page was last modified. * @type {string} * @memberof V2WikiPage */ modifiedOn?: string; /** * The id of the user that last modified this page. * @type {string} * @memberof V2WikiPage */ modifiedBy?: string; /** * When set, the WikiPage is a sub-page of the indicated parent WikiPage. * @type {string} * @memberof V2WikiPage */ parentWikiId?: string; /** * The title of this page. * @type {string} * @memberof V2WikiPage */ title?: string; /** * The file handle id for the file that contains the markdown. * @type {string} * @memberof V2WikiPage */ markdownFileHandleId?: string; /** * The list of attachment file handle ids of this page. * @type {Array} * @memberof V2WikiPage */ attachmentFileHandleIds?: Array; } /** * Check if a given object implements the V2WikiPage interface. */ export declare function instanceOfV2WikiPage(value: object): value is V2WikiPage; export declare function V2WikiPageFromJSON(json: any): V2WikiPage; export declare function V2WikiPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2WikiPage; export declare function V2WikiPageToJSON(json: any): V2WikiPage; export declare function V2WikiPageToJSONTyped(value?: V2WikiPage | null, ignoreDiscriminator?: boolean): any;