UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

18 lines 669 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { lazy, object } from '../schema'; import { amountSchema } from './amount'; import { creditDebitIndicatorEnumSchema, } from './creditDebitIndicatorEnum'; import { statementFeeTypeEnumSchema, } from './statementFeeTypeEnum'; export const statementFeeSchema = object({ amount: ['Amount', lazy(() => amountSchema)], creditDebitIndicator: [ 'CreditDebitIndicator', creditDebitIndicatorEnumSchema, ], type: ['Type', statementFeeTypeEnumSchema], }); //# sourceMappingURL=statementFee.js.map