@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
51 lines (50 loc) • 1.48 kB
TypeScript
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.21.1
* 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 | null;
/**
*
* @type {Date}
* @memberof UserProfileSubscription
*/
periodEnd?: Date | null;
}
/**
* Check if a given object implements the UserProfileSubscription interface.
*/
export declare function instanceOfUserProfileSubscription(value: object): value is UserProfileSubscription;
export declare function UserProfileSubscriptionFromJSON(json: any): UserProfileSubscription;
export declare function UserProfileSubscriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProfileSubscription;
export declare function UserProfileSubscriptionToJSON(json: any): UserProfileSubscription;
export declare function UserProfileSubscriptionToJSONTyped(value?: UserProfileSubscription | null, ignoreDiscriminator?: boolean): any;