This commit is contained in:
Aleksandra Usacheva 2020-12-28 07:01:04 +03:00
parent 11d35e3f8f
commit c3843917ff
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
export interface P2pEmulateFilter { export interface P2pEmulateFilter {
identityId?: string; // TODO: Build fix with '?' identityId: string;
} }

View File

@ -1,4 +1,4 @@
export interface PaymentEmulateFilter { export interface PaymentEmulateFilter {
partyId?: string; // TODO: Build fix with '?' partyId: string;
shopId?: string; shopId?: string;
} }