/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; /** The name of the party. */ export interface PayerName { /** The prefix, or title, to the party's name. */ prefix?: string; /** When the party is a person, the party's given, or first, name. */ givenName?: string; /** When the party is a person, the party's surname or family name. Also known as the last name. Required when the party is a person. Use also to store multiple surnames including the matronymic, or mother's, surname. */ surname?: string; /** When the party is a person, the party's middle name. Use also to store multiple middle names including the patronymic, or father's, middle name. */ middleName?: string; /** The suffix for the party's name. */ suffix?: string; /** DEPRECATED. The party's alternate name. Can be a business name, nickname, or any other name that cannot be split into first, last name. Required when the party is a business. */ alternateFullName?: string; /** When the party is a person, the party's full name. */ fullName?: string; } export declare const payerNameSchema: Schema; //# sourceMappingURL=payerName.d.ts.map