UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
45 lines (44 loc) 1.22 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 Author */ export interface Author { /** * * @type {string} * @memberof Author */ email?: string | null; /** * * @type {string} * @memberof Author */ name?: string | null; /** * * @type {string} * @memberof Author */ url?: string | null; } /** * Check if a given object implements the Author interface. */ export declare function instanceOfAuthor(value: object): value is Author; export declare function AuthorFromJSON(json: any): Author; export declare function AuthorFromJSONTyped(json: any, ignoreDiscriminator: boolean): Author; export declare function AuthorToJSON(json: any): Author; export declare function AuthorToJSONTyped(value?: Author | null, ignoreDiscriminator?: boolean): any;