This commit is contained in:
2026-06-07 01:11:37 +02:00
parent 17f7a00bd7
commit 16c04fc12b
13 changed files with 418 additions and 52 deletions
+4
View File
@@ -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 {