Skip to content

Commit

Permalink
added privacyLevel
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Jul 26, 2024
1 parent c3e19e8 commit 23006f7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tiktok/privacy.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package tiktok

/*
"privacy_level_options": ["PUBLIC_TO_EVERYONE", "MUTUAL_FOLLOW_FRIENDS", "SELF_ONLY"]
*/

type PrivacyLevelOptions string

const (
PUBLIC_TO_EVERYONE PrivacyLevelOptions = "PUBLIC_TO_EVERYONE"
MUTUAL_FOLLOW_FRIENDS PrivacyLevelOptions = "MUTUAL_FOLLOW_FRIENDS"
SELF_ONLY PrivacyLevelOptions = "SELF_ONLY"
)

0 comments on commit 23006f7

Please sign in to comment.