UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

17 lines (16 loc) 618 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetScheduledPaymentsResponseData } from './getScheduledPaymentsResponseData'; import { Links } from './links'; import { Meta } from './meta'; export interface GetAccountScheduledPaymentsResponse { data: GetScheduledPaymentsResponseData; /** Links relevant to the payload */ links: Links; meta: Meta; } export declare const getAccountScheduledPaymentsResponseSchema: Schema<GetAccountScheduledPaymentsResponse>;