UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

20 lines (19 loc) 787 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { AccountAccessConsentResponseModel } from './accountAccessConsentResponseModel'; import { Links } from './links'; import { Meta } from './meta'; import { Risk } from './risk'; export interface AccountAccessConsentResponse { data: AccountAccessConsentResponseModel; /** The Risk section is sent by the initiating party to the API Provider. It is used to specify additional details for risk scoring. */ risk: Risk; /** Links relevant to the payload */ links: Links; meta: Meta; } export declare const accountAccessConsentResponseSchema: Schema<AccountAccessConsentResponse>;