UNPKG

cwmsjs

Version:

CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps

41 lines (40 loc) 997 B
/** * CWMS Data API * CWMS REST API for Data Retrieval * * The version of the OpenAPI document: 2.4.0-2026.3.16 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Guid } from './Guid'; /** * List of RSS items in the channel * @export * @interface RssItem */ export interface RssItem { /** * Description of the RSS item content * @type {string} * @memberof RssItem */ description?: string; /** * Publication date and time of the RSS item * @type {Date} * @memberof RssItem */ pubDate?: Date; /** * * @type {Guid} * @memberof RssItem */ guid?: Guid; } export declare function RssItemFromJSON(json: any): RssItem; export declare function RssItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): RssItem; export declare function RssItemToJSON(value?: RssItem | null): any;