UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
51 lines (50 loc) 1.73 kB
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.22 * Contact: contact@emergentmethods.ai * * 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 OrganizationProfileSubscription */ export interface OrganizationProfileSubscription { /** * * @type {string} * @memberof OrganizationProfileSubscription */ status: string; /** * * @type {string} * @memberof OrganizationProfileSubscription */ plan: string; /** * * @type {Date} * @memberof OrganizationProfileSubscription */ periodStart?: Date | null; /** * * @type {Date} * @memberof OrganizationProfileSubscription */ periodEnd?: Date | null; } /** * Check if a given object implements the OrganizationProfileSubscription interface. */ export declare function instanceOfOrganizationProfileSubscription(value: object): value is OrganizationProfileSubscription; export declare function OrganizationProfileSubscriptionFromJSON(json: any): OrganizationProfileSubscription; export declare function OrganizationProfileSubscriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationProfileSubscription; export declare function OrganizationProfileSubscriptionToJSON(json: any): OrganizationProfileSubscription; export declare function OrganizationProfileSubscriptionToJSONTyped(value?: OrganizationProfileSubscription | null, ignoreDiscriminator?: boolean): any;