feat: versioning in awards definition
This commit is contained in:
@@ -274,6 +274,8 @@ export namespace award {
|
||||
export_credit_granted?: boolean;
|
||||
total: number;
|
||||
builtin: boolean;
|
||||
version?: number;
|
||||
user_edited?: boolean;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new Def(source);
|
||||
@@ -314,6 +316,8 @@ export namespace award {
|
||||
this.export_credit_granted = source["export_credit_granted"];
|
||||
this.total = source["total"];
|
||||
this.builtin = source["builtin"];
|
||||
this.version = source["version"];
|
||||
this.user_edited = source["user_edited"];
|
||||
}
|
||||
|
||||
convertValues(a: any, classs: any, asMap: boolean = false): any {
|
||||
|
||||
Reference in New Issue
Block a user