Class ControlRssRequest
Represents a request to perform a control operation on one or more RSS feeds.
public sealed record ControlRssRequest : IEquatable<ControlRssRequest>
- Inheritance
-
ControlRssRequest
- Implements
- Inherited Members
Properties
All
Gets a value indicating whether the operation should apply to all RSS feeds, or null to apply to a single feed identified by RssFeedId.
[JsonPropertyName("all")]
public bool? All { get; init; }
Property Value
- bool?
Operation
Gets the control operation to perform on the RSS feed.
[JsonPropertyName("operation")]
public ControlOperation Operation { get; init; }
Property Value
RssFeedId
[JsonPropertyName("rss_feed_id")]
public long? RssFeedId { get; init; }
Property Value
- long?