UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

18 lines (17 loc) 714 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 { CreditLineTypeEnum } from './creditLineTypeEnum'; export interface CreditLine { /** Indicates whether or not the credit line is included in the balance of the account. Usage: If not present, credit line is not included in the balance amount of the account. */ included: boolean; /** Amount of money of the cash balance. */ amount?: Amount; /** Limit type, in a coded form. */ type?: CreditLineTypeEnum; } export declare const creditLineSchema: Schema<CreditLine>;