1
0
Fork 0
miniflux/internal/model/subscription.go

16 lines
705 B
Go
Raw Normal View History

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