UNPKG

chargebee-typescript

Version:

A library in typescript for integrating with Chargebee.

18 lines (17 loc) 490 B
import { Model } from "./model"; export declare class ContractTerm extends Model { id: string; status: string; contract_start: number; contract_end: number; billing_cycle: number; action_at_term_end: string; total_contract_value: number; total_contract_value_before_tax: number; cancellation_cutoff_period?: number; created_at: number; subscription_id: string; remaining_billing_cycles?: number; } export declare namespace _contract_term { }