UNPKG

chargebee-typescript

Version:

A library in typescript for integrating with Chargebee.

12 lines (11 loc) 293 B
import { Model } from "./model"; export declare class Hierarchy extends Model { customer_id: string; parent_id?: string; payment_owner_id: string; invoice_owner_id: string; has_children?: boolean; children_ids?: Array<string>; } export declare namespace _hierarchy { }