Uses of Class
com.mediumapi.domain.users.MediumUser
Packages that use MediumUser
-
Uses of MediumUser in com.mediumapi.apiclient
Methods in com.mediumapi.apiclient that return types with arguments of type MediumUserModifier and TypeMethodDescriptiondefault org.springframework.http.ResponseEntity<MediumUser>UserApi.userUserIdGet(String userId) GET /user/{user_id} : Get User Info Returns user-related information such as their - Username - Full name - Bio - Followers count - Following count - Publication Following count - Twitter Username - Profile Image URL - Background Image URL - Logo Image URL - Tipping Link - List of tags in which the user is Top Writer - When did the user become a Medium Member (conditional) - Whether the user has Lists (boolean) - Whether the user is a Medium-verified book author (boolean) - Whether the user is enrolled in Medium Partner Program (boolean) - Whether the user has allowed notes on their articles (boolean) - Whether the user is suspended or not (boolean) **Note:** If you don't know the `user_id`, you can get it from the _Get User ID_ endpoint (`/user/id_for/{username}`). -
Uses of MediumUser in com.mediumapi.client
Methods in com.mediumapi.client that return types with arguments of type MediumUserModifier and TypeMethodDescriptiondefault org.springframework.http.ResponseEntity<MediumUser>UserApiClient.userUserIdGet(String userId) GET /user/{user_id} : Get User Info Returns user-related information such as their - Username - Full name - Bio - Followers count - Following count - Publication Following count - Twitter Username - Profile Image URL - Background Image URL - Logo Image URL - Tipping Link - List of tags in which the user is Top Writer - When did the user become a Medium Member (conditional) - Whether the user has Lists (boolean) - Whether the user is a Medium-verified book author (boolean) - Whether the user is enrolled in Medium Partner Program (boolean) - Whether the user has allowed notes on their articles (boolean) - Whether the user is suspended or not (boolean) **Note:** If you don't know the `user_id`, you can get it from the _Get User ID_ endpoint (`/user/id_for/{username}`). -
Uses of MediumUser in com.mediumapi.domain.users
Methods in com.mediumapi.domain.users that return MediumUserModifier and TypeMethodDescriptionMediumUser.addTopWriterInItem(String topWriterInItem) MediumUser.allowNotes(Boolean allowNotes) MediumUser.bgImageUrl(String bgImageUrl) MediumUser.followersCount(Integer followersCount) MediumUser.followingCount(Integer followingCount) MediumUser.isBookAuthor(Boolean isBookAuthor) MediumUser.isSuspended(Boolean isSuspended) MediumUser.isWriterProgramEnrolled(Boolean isWriterProgramEnrolled) MediumUser.logoImageUrl(String logoImageUrl) MediumUser.mediumMemberAt(String mediumMemberAt) MediumUser.publicationFollowingCount(Integer publicationFollowingCount) MediumUser.tippingLink(String tippingLink) MediumUser.topWriterIn(List<String> topWriterIn) MediumUser.twitterUsername(String twitterUsername)