/** * 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. */ /** * This contains items from an rss feed, and meta data about the rss feed itself * @export * @interface RSSEntry */ export interface RSSEntry { /** * The title of this entry * @type {string} * @memberof RSSEntry */ title?: string; /** * The date this entry was published * @type {string} * @memberof RSSEntry */ date?: string; /** * The author of this entry * @type {string} * @memberof RSSEntry */ author?: string; /** * The content of this entry. * @type {string} * @memberof RSSEntry */ content?: string; /** * The link to this entry. * @type {string} * @memberof RSSEntry */ link?: string; } /** * Check if a given object implements the RSSEntry interface. */ export declare function instanceOfRSSEntry(value: object): value is RSSEntry; export declare function RSSEntryFromJSON(json: any): RSSEntry; export declare function RSSEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): RSSEntry; export declare function RSSEntryToJSON(json: any): RSSEntry; export declare function RSSEntryToJSONTyped(value?: RSSEntry | null, ignoreDiscriminator?: boolean): any;