import { Customer, Plan, Subscription, Addon, HostedPage, PortalSession } from "chargebee-typescript/lib/resources"; /** * The Chargebee customer. * @see [Chargebee Customer](https://apidocs.chargebee.com/docs/api/customers?prod_cat_ver=2#customer_attributes} */ export type SdPlatformChargebeeCustomer = Customer; /** * The Chargebee subscription. * @see [Chargebee Subscription](https://apidocs.chargebee.com/docs/api/subscriptions?prod_cat_ver=2#subscription_attributes) */ export type SdPlatformChargebeeSubscription = Subscription; /** * The Chargebee addon. * @see [Chargebee Addon](https://apidocs.chargebee.com/docs/api/attached_items?prod_cat_ver=2) */ export type SdPlatformChargebeeAddon = Addon; /** * The Chargbee plan. * @see [Chargebee Plan](https://apidocs.chargebee.com/docs/api/items?prod_cat_ver=2#item_attributes) */ export type SdPlatformChargebeePlan = Plan; /** * The Chargebee hosted page. * @see [Hosted Page](https://apidocs.chargebee.com/docs/api/hosted_pages?prod_cat_ver=2#hosted_page_attributes) */ export type SdPlatformChargebeeHostedPage = HostedPage; /** * The Chargebee portal session. * @see [Portal Session](https://apidocs.chargebee.com/docs/api/portal_sessions?prod_cat_ver=2#portal_session_attributes) */ export type SdPlatformChargebeePortalSession = PortalSession; //# sourceMappingURL=SdPlatformChargebee.d.ts.map