UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

32 lines (31 loc) 1.34 kB
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { AccountAccessStatusEnum } from './accountAccessStatusEnum'; import { Consent } from './consent'; export interface AccountAccessConsentResponseModel { /** Unique identification as assigned to identify the account access consent. */ consentId: string; /** Specifies the status of the account access consent. */ status: AccountAccessStatusEnum; /** * Date and time at which the consent was created. * All dates in the JSON payloads are represented in ISO 8601 date-time format. * All date-time fields in responses must include the timezone. An example is below: * 2017-04-05T10:43:07+00:00 */ creationDateTime: string; /** * Date and time at which the consent status was updated. * All dates in the JSON payloads are represented in ISO 8601 date-time format. * All date-time fields in responses must include the timezone. An example is below: * 2017-04-05T10:43:07+00:00 */ statusUpdateDateTime: string; /** Contains the requested consent */ consent: Consent; } export declare const accountAccessConsentResponseModelSchema: Schema<AccountAccessConsentResponseModel>;