Models
Copyright (C) 2024 TheOnlyWayUp
This program is free software: you can redistribute it and/or modify it under the terms of the GNU 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
Pydantic Models representing Wattpad API Responses. Thanks https://jsontopydantic.com.
ConnectedServicesModel
#
Bases: BaseModel
Represents a User's Connected Services.
Source code in src/wattpad/models.py
33 34 35 36 37 |
|
FirstPublishedPartModel
#
Bases: BaseModel
Represents the first published part of a Story.
Source code in src/wattpad/models.py
97 98 99 100 101 |
|
InboxModel
#
Bases: BaseModel
Represents a User's Inbox.
Source code in src/wattpad/models.py
20 21 22 23 24 |
|
LanguageModel
#
Bases: BaseModel
Represents a Language.
Source code in src/wattpad/models.py
90 91 92 93 94 |
|
LastPublishedPartModel
#
Bases: BaseModel
Represents the last (most recent) published part of a Story.
Source code in src/wattpad/models.py
104 105 106 107 108 |
|
ListModel
#
Bases: BaseModel
Represents a User's List.
Source code in src/wattpad/models.py
170 171 172 173 174 175 |
|
NotificationsModel
#
Bases: BaseModel
Represents a User's Notifications.
Source code in src/wattpad/models.py
27 28 29 30 |
|
PartModel
#
Bases: BaseModel
Represents a Part of a Story.
Source code in src/wattpad/models.py
111 112 113 114 115 116 117 118 119 120 121 |
|
StoryModel
#
Bases: BaseModel
Represents a Story.
Source code in src/wattpad/models.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
|
TagRankingModel
#
Bases: BaseModel
Represents a Story's Tag Rankings.
Source code in src/wattpad/models.py
124 125 126 127 128 129 |
|
UserModel
#
Bases: BaseModel
Represents a User.
Source code in src/wattpad/models.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|