28 lines
684 B
TypeScript
28 lines
684 B
TypeScript
import { Deserializable } from '../deserializable.model';
|
|
|
|
/**
|
|
* Content of the 'assignment_related_users' property
|
|
* @ignore
|
|
*/
|
|
export class AssignmentUser implements Deserializable {
|
|
public id: number;
|
|
public user_id: number;
|
|
public elected: boolean;
|
|
public assignment_id: number;
|
|
public weight: number;
|
|
|
|
/**
|
|
* Needs to be completely optional because assignment has (yet) the optional parameter 'assignment_related_users'
|
|
* @param input
|
|
*/
|
|
public constructor(input?: any) {
|
|
if (input) {
|
|
this.deserialize(input);
|
|
}
|
|
}
|
|
|
|
public deserialize(input: any): void {
|
|
Object.assign(this, input);
|
|
}
|
|
}
|