/**
 * Femsa API
 * Femsa sdk
 *
 * The version of the OpenAPI document: 2.1.0
 * Contact: engineering@femsa.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { CustomerShippingContactsAddress } from './customer-shipping-contacts-address';
/**
 * [Shipping](https://developers.femsa.com/v2.1.0/reference/createcustomershippingcontacts) details, required in case of sending a shipping. If we do not receive a shipping_contact on the order, the default shipping_contact of the customer will be used.
 * @export
 * @interface CustomerUpdateShippingContacts
 */
export interface CustomerUpdateShippingContacts {
    /**
     * Phone contact
     * @type {string}
     * @memberof CustomerUpdateShippingContacts
     */
    'phone'?: string;
    /**
     * Name of the person who will receive the order
     * @type {string}
     * @memberof CustomerUpdateShippingContacts
     */
    'receiver'?: string;
    /**
     * The street names between which the order will be delivered.
     * @type {string}
     * @memberof CustomerUpdateShippingContacts
     */
    'between_streets'?: string;
    /**
     *
     * @type {CustomerShippingContactsAddress}
     * @memberof CustomerUpdateShippingContacts
     */
    'address'?: CustomerShippingContactsAddress;
    /**
     *
     * @type {string}
     * @memberof CustomerUpdateShippingContacts
     */
    'parent_id'?: string;
    /**
     *
     * @type {boolean}
     * @memberof CustomerUpdateShippingContacts
     */
    'default'?: boolean | null;
    /**
     *
     * @type {boolean}
     * @memberof CustomerUpdateShippingContacts
     */
    'deleted'?: boolean | null;
}
