bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
15 lines (14 loc) • 362 B
TypeScript
/**
* 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;
}