wallee
Version:
TypeScript/JavaScript client for wallee
22 lines (21 loc) • 1.21 kB
TypeScript
/**
*
* @export
* @interface ExpressCheckoutShippingMethodChangeRequest
*/
export interface ExpressCheckoutShippingMethodChangeRequest {
/**
* Identifier of the selected shipping option.
* @type {string}
* @memberof ExpressCheckoutShippingMethodChangeRequest
*/
readonly shippingMethodId?: string;
}
/**
* Check if a given object implements the ExpressCheckoutShippingMethodChangeRequest interface.
*/
export declare function instanceOfExpressCheckoutShippingMethodChangeRequest(value: object): value is ExpressCheckoutShippingMethodChangeRequest;
export declare function ExpressCheckoutShippingMethodChangeRequestFromJSON(json: any): ExpressCheckoutShippingMethodChangeRequest;
export declare function ExpressCheckoutShippingMethodChangeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressCheckoutShippingMethodChangeRequest;
export declare function ExpressCheckoutShippingMethodChangeRequestToJSON(json: any): ExpressCheckoutShippingMethodChangeRequest;
export declare function ExpressCheckoutShippingMethodChangeRequestToJSONTyped(value?: Omit<ExpressCheckoutShippingMethodChangeRequest, 'shippingMethodId'> | null, ignoreDiscriminator?: boolean): any;