/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { object, optional, Schema, string } from '../schema.js'; /** The store information. */ export interface StoreInformation { /** The ID of a store for a merchant in the system of record. */ storeId?: string; /** The terminal ID for the checkout stand in a merchant store. */ terminalId?: string; } export const storeInformationSchema: Schema = object({ storeId: ['store_id', optional(string())], terminalId: ['terminal_id', optional(string())], });