pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
15 lines (14 loc) • 600 B
TypeScript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { AccountAccessConsentModel } from './accountAccessConsentModel';
import { Risk } from './risk';
export interface AccountAccessConsent {
data: AccountAccessConsentModel;
/** 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;
}
export declare const accountAccessConsentSchema: Schema<AccountAccessConsent>;