UNPKG

@cambridge-pte/gigya

Version:

Fork of Scott Hvestadt's Gigya SDK for NodeJS.

15 lines (14 loc) 321 B
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;