UNPKG
palmpaywrappersdk
Version:
latest (1.0.1)
1.0.1
1.0.0
PalmPay Wrapper Sdk
palmpaywrappersdk
/
src
/
ResponseDTOs
/
ErrorResponse.ts
13 lines
(9 loc)
•
214 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// CreateOrderResponse.ts
export
class
ErrorResponse
{
respCode
:
string
;
respMsg
:
string
;
constructor
(
respCode
:
string
,
respMsg
:
string
) {
this
.
respCode
= respCode;
this
.
respMsg
= respMsg; } }