UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

20 lines (19 loc) 855 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { Amount } from './amount'; import { CreditDebitIndicatorEnum } from './creditDebitIndicatorEnum'; import { StatementFeeTypeEnum } from './statementFeeTypeEnum'; /** Set of elements used to provide details of a fee for the statement resource. */ export interface StatementFee { /** Amount of money of the cash balance. */ amount: Amount; /** Indicates whether the balance is a credit or a debit balance. Usage: A zero balance is considered to be a credit balance. */ creditDebitIndicator: CreditDebitIndicatorEnum; /** Fee type, in a coded form. */ type: StatementFeeTypeEnum; } export declare const statementFeeSchema: Schema<StatementFee>;