UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

28 lines (27 loc) 1.18 kB
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { Address } from './address'; import { PartyTypeEnum } from './partyTypeEnum'; export interface PartyModel { /** A unique and immutable identifier used to identify the customer resource. This identifier has no meaning to the account owner. */ partyId: string; /** Number assigned by an agent to identify its customer. */ partyNumber?: string; /** Party type, in a coded form. */ partyType?: PartyTypeEnum; /** Name by which a party is known and which is usually used to identify that party. */ name?: string; /** Address for electronic mail (e-mail). */ emailAddress?: string; /** Collection of information that identifies a phone number, as defined by telecom services. */ phone?: string; /** Collection of information that identifies a mobile phone number, as defined by telecom services. */ mobile?: string; /** Postal address of a party. */ address?: Address[]; } export declare const partyModelSchema: Schema<PartyModel>;