@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
33 lines (32 loc) • 949 B
TypeScript
/**
* 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.
*/
import type { Profile } from './Profile';
/**
*
* @export
* @interface ProfileResponse
*/
export interface ProfileResponse {
/**
*
* @type {Profile}
* @memberof ProfileResponse
*/
profile: Profile;
}
/**
* Check if a given object implements the ProfileResponse interface.
*/
export declare function instanceOfProfileResponse(value: object): boolean;
export declare function ProfileResponseFromJSON(json: any): ProfileResponse;
export declare function ProfileResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfileResponse;
export declare function ProfileResponseToJSON(value?: ProfileResponse | null): any;