UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
50 lines (49 loc) 1.31 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.18.6 * 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 UserProfileSubscription */ export interface UserProfileSubscription { /** * * @type {string} * @memberof UserProfileSubscription */ status: string; /** * * @type {string} * @memberof UserProfileSubscription */ plan: string; /** * * @type {Date} * @memberof UserProfileSubscription */ periodStart?: Date; /** * * @type {Date} * @memberof UserProfileSubscription */ periodEnd?: Date; } /** * Check if a given object implements the UserProfileSubscription interface. */ export declare function instanceOfUserProfileSubscription(value: object): boolean; export declare function UserProfileSubscriptionFromJSON(json: any): UserProfileSubscription; export declare function UserProfileSubscriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProfileSubscription; export declare function UserProfileSubscriptionToJSON(value?: UserProfileSubscription | null): any;