/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { object, Schema, string } from '../schema.js'; import { UpcType, upcTypeSchema } from './upcType.js'; /** The Universal Product Code of the item. */ export interface UniversalProductCode { /** The Universal Product Code type. */ type: UpcType; /** The UPC product code of the item. */ code: string; } export const universalProductCodeSchema: Schema = object({ type: ['type', upcTypeSchema], code: ['code', string()], });