// 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/>.
packagemodel
// One interaction policy entry for a status.
//
// It can be EITHER one of the internal keywords listed below, OR a full-fledged ActivityPub URI of an Actor, like "https://example.org/users/some_user".
//
// Internal keywords:
//
// - public - Public, aka anyone who can see the status according to its visibility level.
// - followers - Followers of the status author.
// - following - People followed by the status author.
// - mutuals - Mutual follows of the status author (reserved, unused).
// - mentioned - Accounts mentioned in, or replied-to by, the status.
// - author - The status author themself.
// - me - If request was made with an authorized user, "me" represents the user who made the request and is now looking at this interaction policy.
//
// swagger:model interactionPolicyValue
typePolicyValuestring
const(
PolicyValuePublicPolicyValue="public"// Public, aka anyone who can see the status according to its visibility level.
PolicyValueFollowersPolicyValue="followers"// Followers of the status author.
PolicyValueFollowingPolicyValue="following"// People followed by the status author.
PolicyValueMutualsPolicyValue="mutuals"// Mutual follows of the status author (reserved, unused).
PolicyValueMentionedPolicyValue="mentioned"// Accounts mentioned in, or replied-to by, the status.
PolicyValueAuthorPolicyValue="author"// The status author themself.
PolicyValueMePolicyValue="me"// If request was made with an authorized user, "me" represents the user who made the request and is now looking at this interaction policy.