/** * 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 { RSSEntry } from './RSSEntry'; /** * This contains items from an rss feed, and meta data about the rss feed itself * @export * @interface RSSFeed */ export interface RSSFeed { /** * The title of this feed * @type {string} * @memberof RSSFeed */ title?: string; /** * The uri of this feed * @type {string} * @memberof RSSFeed */ uri?: string; /** * The author of this feed * @type {string} * @memberof RSSFeed */ author?: string; /** * The description of this feed. * @type {string} * @memberof RSSFeed */ description?: string; /** * The list of rss entries. * @type {Array} * @memberof RSSFeed */ entries?: Array; } /** * Check if a given object implements the RSSFeed interface. */ export declare function instanceOfRSSFeed(value: object): value is RSSFeed; export declare function RSSFeedFromJSON(json: any): RSSFeed; export declare function RSSFeedFromJSONTyped(json: any, ignoreDiscriminator: boolean): RSSFeed; export declare function RSSFeedToJSON(json: any): RSSFeed; export declare function RSSFeedToJSONTyped(value?: RSSFeed | null, ignoreDiscriminator?: boolean): any;