import type { LineItem } from './LineItem'; /** * * @export * @interface ExpressCheckoutShippingMethodChangeResponse */ export interface ExpressCheckoutShippingMethodChangeResponse { /** * * @type {Array} * @memberof ExpressCheckoutShippingMethodChangeResponse */ readonly lineItems?: Array; /** * * @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 | null, ignoreDiscriminator?: boolean): any;