From ce4e39bfb3f63f7685bc4e3141422020367acaa4 Mon Sep 17 00:00:00 2001 From: ryohidaka <39184410+ryohidaka@users.noreply.github.com> Date: Thu, 8 May 2025 21:07:46 +0900 Subject: [PATCH] feat(models): Added is_accept_request variable to UserInfo class. --- pixivpy3/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pixivpy3/models.py b/pixivpy3/models.py index fa9a950..07713fc 100644 --- a/pixivpy3/models.py +++ b/pixivpy3/models.py @@ -115,6 +115,9 @@ class UserInfo(BasePixivpyModel): comment: Optional[str] = None # present only on `user_detail` endpoint is_followed: Optional[bool] is_access_blocking_user: Optional[bool] = None + is_accept_request: Optional[bool] = ( + None # present only on `user_following` and `user_follower` endpoint + ) class CommentUser(BasePixivpyModel):