UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

18 lines 684 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 { statementAmountTypeEnumSchema, } from './statementAmountTypeEnum'; export const statementAmountSchema = object({ amount: ['Amount', lazy(() => amountSchema)], creditDebitIndicator: [ 'CreditDebitIndicator', creditDebitIndicatorEnumSchema, ], type: ['Type', statementAmountTypeEnumSchema], }); //# sourceMappingURL=statementAmount.js.map