UserProfile¶
Contained within this file are experimental interfaces for working with the Synapse Python Client. Unless otherwise noted these interfaces are subject to change at any time. Use at your own risk.
API Reference¶
synapseclient.models.UserProfile
dataclass
¶
Bases: UserProfileSynchronousProtocol
UserProfile represents a user's profile in the system.
ATTRIBUTE | DESCRIPTION |
---|---|
id |
A foreign key to the ID of the 'principal' object for the user. |
etag |
Synapse employs an Optimistic Concurrency Control (OCC) scheme to handle concurrent updates. Since the E-Tag changes every time an entity is updated it is used to detect when a client's currentrepresentation of an entity is out-of-date. |
first_name |
This person's given name (forename) |
last_name |
This person's family name (surname) |
emails |
The list of user email addresses registered to this user. |
open_ids |
The list of OpenIds bound to this user's account. |
username |
A name chosen by the user that uniquely identifies them. |
display_name |
This field is deprecated and will always be null. |
r_studio_url |
URL for RStudio server assigned to the user. |
summary |
A summary description about this person. |
position |
This person's current position title. |
location |
This person's location. |
industry |
The industry/discipline that this person is associated with. |
company |
This person's current affiliation. |
profile_picure_file_handle_id |
The File Handle id of the user's profile picture. |
url |
A link to more information about this person. |
team_name |
This person's default team name. |
notification_settings |
Contains a user's notification settings. |
preferences |
User preferences
TYPE:
|
created_on |
The date this profile was created. |
Source code in synapseclient/models/user.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 |
|
Functions¶
get_async
async
¶
get_async(*, synapse_client: Optional[Synapse] = None) -> UserProfile
Gets a UserProfile object using its id or username in that order. If an id and username is not specified this will retrieve the current user's profile.
PARAMETER | DESCRIPTION |
---|---|
synapse_client
|
If not passed in and caching was not disabled by
|
RETURNS | DESCRIPTION |
---|---|
UserProfile
|
The UserProfile object. |
Source code in synapseclient/models/user.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 |
|
from_id_async
async
classmethod
¶
from_id_async(user_id: int, *, synapse_client: Optional[Synapse] = None) -> UserProfile
Gets UserProfile object using its integer id. Wrapper for the get method.
PARAMETER | DESCRIPTION |
---|---|
user_id
|
The id of the user.
TYPE:
|
synapse_client
|
If not passed in and caching was not disabled by
|
RETURNS | DESCRIPTION |
---|---|
UserProfile
|
The UserProfile object. |
Source code in synapseclient/models/user.py
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
|
from_username_async
async
classmethod
¶
from_username_async(username: str, *, synapse_client: Optional[Synapse] = None) -> UserProfile
Gets UserProfile object using its string name. Wrapper for the get method.
PARAMETER | DESCRIPTION |
---|---|
username
|
A name chosen by the user that uniquely identifies them.
TYPE:
|
synapse_client
|
If not passed in and caching was not disabled by
|
RETURNS | DESCRIPTION |
---|---|
UserProfile
|
The UserProfile object. |
Source code in synapseclient/models/user.py
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
is_certified_async
async
¶
Determine whether a user is certified.
PARAMETER | DESCRIPTION |
---|---|
synapse_client
|
If not passed in and caching was not disabled by
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if the user is certified, False otherwise. |
RAISES | DESCRIPTION |
---|---|
ValueError
|
If id nor username is specified. |
Source code in synapseclient/models/user.py
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 |
|
synapseclient.models.UserPreference
dataclass
¶
A UserPreference represents a user preference in the system.
ATTRIBUTE | DESCRIPTION |
---|---|
name |
The name of the user preference. |
value |
The value of the user preference. |
Source code in synapseclient/models/user.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|