UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

44 lines (43 loc) 1.11 kB
export declare class CardOrderItemDeliveryStatus { /** * An error message. */ "errorMessage"?: string; /** * The status of the PIN delivery. */ "status"?: CardOrderItemDeliveryStatus.StatusEnum; /** * The tracking number of the PIN delivery. */ "trackingNumber"?: string; 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(); } export declare namespace CardOrderItemDeliveryStatus { enum StatusEnum { Created = "created", Delivered = "delivered", NotApplicable = "notApplicable", Processing = "processing", Produced = "produced", Rejected = "rejected", Shipped = "shipped", Unknown = "unknown" } }