AW-1805 Update mollie service (client)
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
16
projects/common/src/fm/models/mollie.payment.request.ts
Normal file
16
projects/common/src/fm/models/mollie.payment.request.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
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() {
|
||||
}
|
||||
}
|
@@ -2,12 +2,16 @@
|
||||
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() {
|
||||
|
Reference in New Issue
Block a user