Users
internal enum Users
The set of available Users API endpoint types.
-
The endpoint to sign up a user.
Declaration
Swift
case signUp
-
The endpoint to sign in a user.
Declaration
Swift
case signIn
-
The endpoint to sign in a user using Sign in with Apple.
Declaration
Swift
case siwaSignIn
-
The edpoint to reset a user’s password.
Declaration
Swift
case resetPassword
-
The endpoint to the feed messages.
Declaration
Swift
case feedMessages(_: UserIdentity)
-
The endpoint to follow or unfollow a user.
Declaration
Swift
case follow(_: UserIdentity)
-
The endpoint to a user’s followers list.
Declaration
Swift
case followers(_: UserIdentity)
-
The endpoint to a user’s following list.
Declaration
Swift
case following(_: UserIdentity)
-
The endpoint to view a user’s favorites.
Declaration
Swift
case favorites(_: UserIdentity)
-
The endpoint to view a user’s library.
Declaration
Swift
case library(_: UserIdentity)
-
The endpoint to a user’s profile.
Declaration
Swift
case profile(_: UserIdentity)
-
The endpoint to view a user’s reviews.
Declaration
Swift
case reviews(_: UserIdentity)
-
The endpoint to search for a user.
Declaration
Swift
case search(_: String)
-
The endpoint to delete a user’s account.
Declaration
Swift
case delete
-
The endpoint value of the Users API type.
Declaration
Swift
var endpointValue: String { get }