chargebee-typescript
Version:
A library in typescript for integrating with Chargebee.
15 lines (14 loc) • 486 B
TypeScript
import { ListResult } from '../list_result';
import { RequestWrapper } from "../request_wrapper";
import { Model } from "./model";
export declare class CustomerEntitlement extends Model {
customer_id: string;
subscription_id?: string;
feature_id?: string;
value?: string;
name?: string;
is_enabled: boolean;
static entitlements_for_customer(customer_id: string, params?: any): RequestWrapper<ListResult>;
}
export declare namespace _customer_entitlement {
}