@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
41 lines (40 loc) • 1.18 kB
TypeScript
import { Amount } from "./amount";
import { DeliveryMethod } from "./deliveryMethod";
import { TaxTotal } from "./taxTotal";
export declare class PaypalUpdateOrderRequest {
"amount"?: Amount | null;
/**
* The list of new delivery methods and the cost of each.
*/
"deliveryMethods"?: Array<DeliveryMethod>;
/**
* The `paymentData` from the client side. This value changes every time you make a `/paypal/updateOrder` request.
*/
"paymentData"?: string;
/**
* The original `pspReference` from the `/payments` response.
*/
"pspReference"?: string;
/**
* The original `sessionId` from the `/sessions` response.
*/
"sessionId"?: string;
"taxTotal"?: TaxTotal | null;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}