/**
 * RSS Read Node - Version 1
 * Reads data from an RSS Feed
 */


export interface RssFeedReadV1Params {
/**
 * URL of the RSS feed
 */
    url?: string | Expression<string> | PlaceholderValue;
  options?: {
    /** A comma-separated list of custom fields to include in the output. For example, "author, contentSnippet".
     */
    customFields?: string | Expression<string> | PlaceholderValue;
    /** Whether to ignore SSL/TLS certificate issues or not
     * @default false
     */
    ignoreSSL?: boolean | Expression<boolean>;
  };
}

interface RssFeedReadV1NodeBase {
  type: 'n8n-nodes-base.rssFeedRead';
  version: 1;
}

export type RssFeedReadV1ParamsNode = RssFeedReadV1NodeBase & {
  config: NodeConfig<RssFeedReadV1Params>;
};

export type RssFeedReadV1Node = RssFeedReadV1ParamsNode;