pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
15 lines • 652 B
JavaScript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { lazy, object, optional, string } from '../schema';
import { postalAddressSchema } from './postalAddress';
import { schemeNameEnumSchema } from './schemeNameEnum';
export const creditorAgentSchema = object({
schemeName: ['SchemeName', optional(schemeNameEnumSchema)],
identification: ['Identification', optional(string())],
name: ['Name', optional(string())],
postalAddress: ['PostalAddress', optional(lazy(() => postalAddressSchema))],
});
//# sourceMappingURL=creditorAgent.js.map