chargebee-typescript
Version:
A library in typescript for integrating with Chargebee.
15 lines (14 loc) • 330 B
TypeScript
import { Model } from "./model";
export declare class Contact extends Model {
id: string;
first_name?: string;
last_name?: string;
email: string;
phone?: string;
label?: string;
enabled: boolean;
send_account_email: boolean;
send_billing_email: boolean;
}
export declare namespace _contact {
}