UNPKG

chargebee-typescript

Version:

A library in typescript for integrating with Chargebee.

11 lines (10 loc) 265 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; children_ids?: Array<string>; } export declare namespace _hierarchy { }