chargebee
Version:
A library for integrating with Chargebee.
16 lines (14 loc) • 416 B
TypeScript
///<reference path='./../core.d.ts'/>
///<reference path='./../index.d.ts'/>
declare module 'chargebee' {
export interface BusinessEntityTransfer {
id: string;
resource_type: 'customer' | 'subscription';
resource_id: string;
active_resource_id: string;
destination_business_entity_id: string;
source_business_entity_id: string;
reason_code: 'correction';
created_at: number;
}
}