/**
 * Shell Card Management APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { Datum } from './datum.js';
import { DeliveryAddressUpdateStatusEnum } from './deliveryAddressUpdateStatusEnum.js';
export interface ResponseDeliveryAddressUpdate {
    /** Mandatory UUID (according to RFC 4122 standards) for requests and responses. This will be played back in the response from the requests. */
    requestId: string;
    status: DeliveryAddressUpdateStatusEnum;
    /** Main reference number for tracking. */
    mainReference?: number;
    /** List of Delivery address update entity. The fields of this entity are described below. */
    data?: Datum[];
}
export declare const responseDeliveryAddressUpdateSchema: Schema<ResponseDeliveryAddressUpdate>;
//# sourceMappingURL=responseDeliveryAddressUpdate.d.ts.map