Skip to content

Instantly share code, notes, and snippets.

View ZhiliangGong's full-sized avatar

Julian Gong ZhiliangGong

  • Chicago, IL
View GitHub Profile
@ZhiliangGong
ZhiliangGong / codes.ts
Created April 29, 2019 15:52
NMI response codes
export enum NmiResponse {
Approved = '1',
Declined = '2',
Errored = '3'
}
// ref: http://www.noblepay.com/pdf/NMI_Direct_Post_API(19).pdf
export const NmiResponseCode = {
'100': 'transaction was approved',
'200': 'transaction was declined by processor',