UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

17 lines (16 loc) 648 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 { StatementBenefitTypeEnum } from './statementBenefitTypeEnum'; /** Set of elements used to provide details of a benefit or reward amount for the statement resource. */ export interface StatementBenefit { /** Amount of money of the cash balance. */ amount: Amount; /** Benefit type, in a coded form. */ type: StatementBenefitTypeEnum; } export declare const statementBenefitSchema: Schema<StatementBenefit>;