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


export interface RssFeedReadV11Params {
/**
 * 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 RssFeedReadV11NodeBase {
  type: 'n8n-nodes-base.rssFeedRead';
  version: 1.1;
}

export type RssFeedReadV11ParamsNode = RssFeedReadV11NodeBase & {
  config: NodeConfig<RssFeedReadV11Params>;
};

export type RssFeedReadV11Node = RssFeedReadV11ParamsNode;