/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { PhoneNumber } from './phoneNumber.js'; import { PhoneType } from './phoneType.js'; /** The phone information. */ export interface PhoneWithType { /** The phone type. */ phoneType?: PhoneType; /** The phone number in its canonical international [E.164 numbering plan format](https://www.itu.int/rec/T-REC-E.164/en). */ phoneNumber: PhoneNumber; } export declare const phoneWithTypeSchema: Schema; //# sourceMappingURL=phoneWithType.d.ts.map