2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-03-13 16:07:05 +00:00
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
package model
|
2021-03-13 16:07:05 +00:00
|
|
|
|
2021-07-31 16:49:59 +01:00
|
|
|
// Relationship represents a relationship between accounts.
|
|
|
|
//
|
|
|
|
// swagger:model accountRelationship
|
2021-03-13 16:07:05 +00:00
|
|
|
type Relationship struct {
|
|
|
|
// The account id.
|
2021-07-31 16:49:59 +01:00
|
|
|
// example: 01FBW9XGEP7G6K88VY4S9MPE1R
|
2021-03-13 16:07:05 +00:00
|
|
|
ID string `json:"id"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You are following this account.
|
2021-03-13 16:07:05 +00:00
|
|
|
Following bool `json:"following"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You are seeing reblogs/boosts from this account in your home timeline.
|
2021-03-13 16:07:05 +00:00
|
|
|
ShowingReblogs bool `json:"showing_reblogs"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You are seeing notifications when this account posts.
|
2021-03-13 16:07:05 +00:00
|
|
|
Notifying bool `json:"notifying"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// This account follows you.
|
2021-03-13 16:07:05 +00:00
|
|
|
FollowedBy bool `json:"followed_by"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You are blocking this account.
|
2021-03-13 16:07:05 +00:00
|
|
|
Blocking bool `json:"blocking"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// This account is blocking you.
|
2021-03-13 16:07:05 +00:00
|
|
|
BlockedBy bool `json:"blocked_by"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You are muting this account.
|
2021-03-13 16:07:05 +00:00
|
|
|
Muting bool `json:"muting"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You are muting notifications from this account.
|
2021-03-13 16:07:05 +00:00
|
|
|
MutingNotifications bool `json:"muting_notifications"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You have requested to follow this account, and the request is pending.
|
2021-03-13 16:07:05 +00:00
|
|
|
Requested bool `json:"requested"`
|
2024-02-20 17:50:54 +00:00
|
|
|
// This account has requested to follow you, and the request is pending.
|
|
|
|
RequestedBy bool `json:"requested_by"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You are blocking this account's domain.
|
2021-03-13 16:07:05 +00:00
|
|
|
DomainBlocking bool `json:"domain_blocking"`
|
2021-07-31 16:49:59 +01:00
|
|
|
// You are featuring this account on your profile.
|
2021-03-13 16:07:05 +00:00
|
|
|
Endorsed bool `json:"endorsed"`
|
|
|
|
// Your note on this account.
|
|
|
|
Note string `json:"note"`
|
|
|
|
}
|