ebay-api
Version:
eBay API for Node and Browser
32 lines (31 loc) • 901 B
TypeScript
import type { StandardOutputFields } from './common.js';
export interface GetStoreResponse extends StandardOutputFields {
Store: {
CustomCategories: {
CustomCategory: {
CategoryID: bigint;
ChildCategory: {
CategoryID: bigint;
ChildCategory: {
CategoryID?: bigint;
ChildCategory?: any;
Name?: string;
Order?: number;
};
Name: string;
Order: number;
};
Name: string;
Order: number;
};
};
Description: string;
LastOpenedTime?: string;
Logo?: {
URL?: string;
};
Name: string;
URL?: string;
URLPath?: string;
};
}