1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00
miniflux-v2/internal/model/subscription.go

18 lines
819 B
Go
Raw Permalink Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2021-01-04 13:49:28 -08:00
package model // import "miniflux.app/v2/internal/model"
2021-01-04 13:49:28 -08:00
// SubscriptionDiscoveryRequest represents a request to discover subscriptions.
type SubscriptionDiscoveryRequest struct {
URL string `json:"url"`
UserAgent string `json:"user_agent"`
2021-03-23 04:27:58 +01:00
Cookie string `json:"cookie"`
Username string `json:"username"`
Password string `json:"password"`
2025-04-06 18:04:50 -07:00
ProxyURL string `json:"proxy_url"`
FetchViaProxy bool `json:"fetch_via_proxy"`
AllowSelfSignedCertificates bool `json:"allow_self_signed_certificates"`
DisableHTTP2 bool `json:"disable_http2"`
2021-01-04 13:49:28 -08:00
}