@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
30 lines (29 loc) • 1.07 kB
TypeScript
/**
* Neynar API
* The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 3.175.0
* Contact: team@neynar.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface Billing200Response {
'billing_email': string | null;
'effective_plan': string;
'has_active_subscription': boolean;
'is_trialing': boolean;
'organization_name': string;
'organization_status': string | null;
'plan_tier': string | null;
'product_category': string | null;
'product_name': string | null;
'stripe_customer_id': string | null;
'stripe_product_id': string | null;
'stripe_subscription_id': string | null;
'subscription_end': string | null;
'subscription_start': string | null;
'subscription_status': string | null;
'workos_organization_id': string;
}