pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
20 lines (16 loc) • 713 B
text/typescript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { object, optional, Schema, string } 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 const proprietaryBankTransactionCodeSchema: Schema<ProprietaryBankTransactionCode> = object(
{ code: ['Code', string()], issuer: ['Issuer', optional(string())] }
);