pluggy-sdk
Version:
Official Node.js/TypeScript SDK for the Pluggy API.
11 lines (10 loc) • 324 B
TypeScript
export type Category = {
/** primary identifier of the category */
id: string;
/** Category's name or description. */
description: string;
/** Parent category hierachy primary identifier */
parentId?: string;
/** Parent category hierachy name or description */
parentDescription?: string;
};