Move mollie code ( srvice ) uit farmmapslib halen ( is open source ), naar farmmaps
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
2021-01-13 17:29:48 +01:00
parent ed5a74ed07
commit 41b1295f9e
5 changed files with 2 additions and 71 deletions

View File

@@ -1,16 +0,0 @@
import { IItem } from "./item";
export interface IMolliePaymentRequest {
templatePackageItem?: IItem,
redirectUrl?: string,
locale?: string,
}
export class MolliePaymentRequest implements IMolliePaymentRequest {
public templatePackageItem?: IItem;
public redirectUrl?: string;
public locale?: string;
constructor() {
}
}

View File

@@ -1,19 +0,0 @@
export interface IMolliePaymentResponse {
createdAt?: Date,
expiresAt?: Date,
currency?: string,
amount?: string,
checkoutUrl?: string,
}
export class MolliePaymentResponse implements IMolliePaymentResponse {
public createdAt?: Date;
public expiresAt?: Date;
public currency?: string;
public amount?: string;
public checkoutUrl?: string;
constructor() {
}
}