24 lines
390 B
TypeScript
24 lines
390 B
TypeScript
export interface BsbpOrder {
|
|
typeRid: string
|
|
amount: number
|
|
currency: string
|
|
title?: string
|
|
description?: string
|
|
hppRedirectUrl: string
|
|
}
|
|
|
|
export interface BsbpCreateRequest {
|
|
order: BsbpOrder
|
|
}
|
|
|
|
export interface BsbpCreateResponse {
|
|
order: {
|
|
id: number
|
|
hppUrl: string
|
|
password: string
|
|
accessToken: string
|
|
status: string
|
|
cvv2AuthStatus: string
|
|
}
|
|
}
|