import type { ExpressCheckoutShippingOption } from './ExpressCheckoutShippingOption'; /** * * @export * @interface ExpressCheckoutShippingAddressChangeResponse */ export interface ExpressCheckoutShippingAddressChangeResponse { /** * * @type {number} * @memberof ExpressCheckoutShippingAddressChangeResponse */ readonly orderTotal?: number; /** * * @type {Array} * @memberof ExpressCheckoutShippingAddressChangeResponse */ readonly shippingOptions?: Array; } /** * Check if a given object implements the ExpressCheckoutShippingAddressChangeResponse interface. */ export declare function instanceOfExpressCheckoutShippingAddressChangeResponse(value: object): value is ExpressCheckoutShippingAddressChangeResponse; export declare function ExpressCheckoutShippingAddressChangeResponseFromJSON(json: any): ExpressCheckoutShippingAddressChangeResponse; export declare function ExpressCheckoutShippingAddressChangeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressCheckoutShippingAddressChangeResponse; export declare function ExpressCheckoutShippingAddressChangeResponseToJSON(json: any): ExpressCheckoutShippingAddressChangeResponse; export declare function ExpressCheckoutShippingAddressChangeResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;