pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
14 lines • 552 B
JavaScript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { boolean, lazy, object, optional } from '../schema';
import { amountSchema } from './amount';
import { creditLineTypeEnumSchema, } from './creditLineTypeEnum';
export const creditLineSchema = object({
included: ['Included', boolean()],
amount: ['Amount', optional(lazy(() => amountSchema))],
type: ['Type', optional(creditLineTypeEnumSchema)],
});
//# sourceMappingURL=creditLine.js.map