pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
15 lines (14 loc) • 617 B
TypeScript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
/** Set of elements to fully identify a proprietary bank transaction code. */
export interface ProprietaryBankTransactionCode {
/** Proprietary bank transaction code to identify the underlying transaction. */
code: string;
/** Identification of the issuer of the proprietary bank transaction code. */
issuer?: string;
}
export declare const proprietaryBankTransactionCodeSchema: Schema<ProprietaryBankTransactionCode>;