UNPKG
@cambridge-pte/gigya
Version:
latest (3.0.5)
3.0.5
3.0.4
3.0.3
3.0.2
Fork of Scott Hvestadt's Gigya SDK for NodeJS.
github.com/cambridge-pte/gigya
cambridge-pte/gigya
@cambridge-pte/gigya
/
dist
/
lib
/
interfaces
/
gigya-response.d.ts
15 lines
(14 loc)
•
321 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
GigyaResponse
{
callId
:
string
;
statusCode
:
number
;
statusReason
:
string
;
time
:
string
;
errorCode
:
number
;
errorMessage
?:
string
;
errorDetails
?:
string
;
validationErrors
?:
Array
<{
fieldName
:
string
;
message
:
string
; }>; }
export
default
GigyaResponse
;