Table of Contents

Class ControlRssRequest

Namespace
TorBoxSDK.Models.Rss
Assembly
TorBoxSDK.dll

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

ControlOperation

RssFeedId

Gets the identifier of the RSS feed to control, or null when All is true.

[JsonPropertyName("rss_feed_id")]
public long? RssFeedId { get; init; }

Property Value

long?