UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

15 lines (14 loc) 536 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Location of the end-user on the earth specified by two numbers representing vertical and horizontal position */ export interface GeoLocation { /** Latitude measured in decimal degress */ latitude?: string; /** Longitude measured in decimal degress */ longitude?: string; } export declare const geoLocationSchema: Schema<GeoLocation>;