/** Customer informations about a portability */
export interface PortabilityCustomerInfos {
    /** Building of the customer's address */
    building?: string;
    /** City of the customer's address */
    city: string;
    /** Door of the customer's address */
    door?: string;
    /** Floor of the customer's address */
    floor?: string;
    /** Name of the customer */
    name: string;
    /** SIRET of the customer */
    siret?: string;
    /** Stair of the customer's address */
    stair?: string;
    /** Street name of the customer's address */
    streetName: string;
    /** Street number of the customer's address */
    streetNumber: string;
    /** ZIP code of the customer's address */
    zip: string;
}
//# sourceMappingURL=PortabilityCustomerInfos.d.ts.map