UNPKG

bluesnap

Version:
15 lines (14 loc) 362 B
/** * Contains metadata keys and values * These metadata objects are contained in the metaData array in the transactionMetaData object */ export interface MetaDataRequest { metaKey: string; metaValue: string; metaDescription: string; } export interface MetaDataResponse { metaKey: string; metaValue: string; metaDescription: string; }