@bondsports/types 2.1.28 → 2.1.30
Sign up to get free protection for your applications and to get access to all the features.
@@ -22,12 +22,12 @@ export declare class ImportMembershipDto extends CreateMembershipDto {
|
|
22
22
|
}
|
23
23
|
export declare class ImportMembershipMembersDto extends AddImportedCustomerDto {
|
24
24
|
importedCustomerId: string;
|
25
|
-
userId
|
25
|
+
userId?: number;
|
26
26
|
importedCustomerParentId: string;
|
27
|
-
parentId
|
28
|
-
|
29
|
-
membershipId
|
27
|
+
parentId?: number;
|
28
|
+
importedMembershipId: string;
|
29
|
+
membershipId?: number;
|
30
30
|
paymentMethodId?: string;
|
31
31
|
paymentMethodType?: PaymentMethodTypeEnum;
|
32
|
-
startDate
|
32
|
+
startDate: string;
|
33
33
|
}
|