awards
This commit is contained in:
@@ -1038,6 +1038,8 @@ export namespace main {
|
||||
added: number;
|
||||
unmatched: number;
|
||||
unmatched_list: POTAUnmatched[];
|
||||
skipped_other_call: number;
|
||||
my_call: string;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new POTASyncResult(source);
|
||||
@@ -1051,6 +1053,8 @@ export namespace main {
|
||||
this.added = source["added"];
|
||||
this.unmatched = source["unmatched"];
|
||||
this.unmatched_list = this.convertValues(source["unmatched_list"], POTAUnmatched);
|
||||
this.skipped_other_call = source["skipped_other_call"];
|
||||
this.my_call = source["my_call"];
|
||||
}
|
||||
|
||||
convertValues(a: any, classs: any, asMap: boolean = false): any {
|
||||
|
||||
Reference in New Issue
Block a user