card-management-sdk
Version:
The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S
19 lines • 910 B
TypeScript
/**
* 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