wallee
Version:
TypeScript/JavaScript client for wallee
29 lines (28 loc) • 1.38 kB
TypeScript
import type { LineItem } from './LineItem';
/**
*
* @export
* @interface ExpressCheckoutShippingMethodChangeResponse
*/
export interface ExpressCheckoutShippingMethodChangeResponse {
/**
*
* @type {Array<LineItem>}
* @memberof ExpressCheckoutShippingMethodChangeResponse
*/
readonly lineItems?: Array<LineItem>;
/**
*
* @type {number}
* @memberof ExpressCheckoutShippingMethodChangeResponse
*/
readonly orderTotal?: number;
}
/**
* Check if a given object implements the ExpressCheckoutShippingMethodChangeResponse interface.
*/
export declare function instanceOfExpressCheckoutShippingMethodChangeResponse(value: object): value is ExpressCheckoutShippingMethodChangeResponse;
export declare function ExpressCheckoutShippingMethodChangeResponseFromJSON(json: any): ExpressCheckoutShippingMethodChangeResponse;
export declare function ExpressCheckoutShippingMethodChangeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressCheckoutShippingMethodChangeResponse;
export declare function ExpressCheckoutShippingMethodChangeResponseToJSON(json: any): ExpressCheckoutShippingMethodChangeResponse;
export declare function ExpressCheckoutShippingMethodChangeResponseToJSONTyped(value?: Omit<ExpressCheckoutShippingMethodChangeResponse, 'lineItems' | 'orderTotal'> | null, ignoreDiscriminator?: boolean): any;