UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

20 lines (16 loc) 630 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { array, lazy, object, optional, Schema } from '../schema'; import { StatementModel, statementModelSchema } from './statementModel'; export interface GetAccountStatementsResponseData { /** Provides further details on a statement resource. */ statement?: StatementModel[]; } export const getAccountStatementsResponseDataSchema: Schema<GetAccountStatementsResponseData> = object( { statement: ['Statement', optional(array(lazy(() => statementModelSchema)))], } );