Store Information

August 21, 2026 ยท View on GitHub

The store information.

Structure

StoreInformation

Fields

NameTypeTagsDescriptionGetterSetter
StoreIdStringOptionalThe ID of a store for a merchant in the system of record.

Constraints: Minimum Length: 1, Maximum Length: 100, Pattern: ^[a-zA-Z0-9]*$
String getStoreId()setStoreId(String storeId)
TerminalIdStringOptionalThe terminal ID for the checkout stand in a merchant store.

Constraints: Minimum Length: 1, Maximum Length: 60, Pattern: ^[a-zA-Z0-9]*$
String getTerminalId()setTerminalId(String terminalId)

Example

import com.paypal.sdk.models.StoreInformation;

StoreInformation storeInformation = new StoreInformation.Builder()
    .storeId("store_id8")
    .terminalId("terminal_id2")
    .build();