mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
555 B
24 lines
555 B
export class UserItem {
|
|
constructor(
|
|
public id: number,
|
|
public username: string,
|
|
public is_superuser: boolean,
|
|
public is_staff: boolean
|
|
) {}
|
|
|
|
static valueOf(
|
|
{ id, username, is_superuser, is_staff }:
|
|
{ id: number, username: string, is_superuser: boolean, is_staff: boolean }
|
|
): UserItem {
|
|
return new UserItem(id, username, is_superuser, is_staff)
|
|
}
|
|
|
|
toObject(): Object {
|
|
return {
|
|
id: this.id,
|
|
username: this.username,
|
|
is_superuser: this.is_superuser,
|
|
is_staff: this.is_staff
|
|
}
|
|
}
|
|
}
|