/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { Address3 } from './address3';
export interface Customer3 {
    address?: Address3;
    /** Code of delivery location at PostNL Pakketten */
    collectionLocation?: string;
    /** Name of customer contact person */
    contactPerson?: string;
    /** Customer code as known at PostNL Pakketten */
    customerCode: string;
    /** Name of customer contact person */
    customerNumber: string;
    /** E-mail address of the customer */
    email?: string;
    /** Customer name */
    name?: string;
}
export declare const customer3Schema: Schema<Customer3>;
