/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { ItemCategory } from './itemCategory.js'; import { Money } from './money.js'; import { OrderBillingPlan } from './orderBillingPlan.js'; import { UniversalProductCode } from './universalProductCode.js'; /** The details for the items to be purchased. */ export interface Item { /** The item name or title. */ name: string; /** The currency and amount for a financial transaction, such as a balance or payment due. */ unitAmount: Money; /** The currency and amount for a financial transaction, such as a balance or payment due. */ tax?: Money; /** The item quantity. Must be a whole number. */ quantity: string; /** The detailed item description. */ description?: string; /** The stock keeping unit (SKU) for the item. */ sku?: string; /** The URL to the item being purchased. Visible to buyer and used in buyer experiences. */ url?: string; /** The item category type. */ category?: ItemCategory; /** The URL of the item's image. File type and size restrictions apply. An image that violates these restrictions will not be honored. */ imageUrl?: string; /** The Universal Product Code of the item. */ upc?: UniversalProductCode; /** Metadata for merchant-managed recurring billing plans. Valid only during the saved payment method token or billing agreement creation. */ billingPlan?: OrderBillingPlan; } export declare const itemSchema: Schema; //# sourceMappingURL=item.d.ts.map