/** * 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 WikiHistorySnapshot contains basic information about an update to a WikiPage. * @export * @interface V2WikiHistorySnapshot */ export interface V2WikiHistorySnapshot { /** * The version of this snapshot in the wiki's history. * @type {string} * @memberof V2WikiHistorySnapshot */ version?: string; /** * The timestamp when this modification/snapshot took place. * @type {string} * @memberof V2WikiHistorySnapshot */ modifiedOn?: string; /** * The id of the user that made this modification. * @type {string} * @memberof V2WikiHistorySnapshot */ modifiedBy?: string; } /** * Check if a given object implements the V2WikiHistorySnapshot interface. */ export declare function instanceOfV2WikiHistorySnapshot(value: object): value is V2WikiHistorySnapshot; export declare function V2WikiHistorySnapshotFromJSON(json: any): V2WikiHistorySnapshot; export declare function V2WikiHistorySnapshotFromJSONTyped(json: any, ignoreDiscriminator: boolean): V2WikiHistorySnapshot; export declare function V2WikiHistorySnapshotToJSON(json: any): V2WikiHistorySnapshot; export declare function V2WikiHistorySnapshotToJSONTyped(value?: V2WikiHistorySnapshot | null, ignoreDiscriminator?: boolean): any;