UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

41 lines 1.69 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.0 * * * 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 { GetUserInternalProfileResponseProfile } from './GetUserInternalProfileResponseProfile'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetUserInternalProfileResponse */ export interface GetUserInternalProfileResponse { /** * * @type {GetUserInternalProfileResponseProfile} * @memberof GetUserInternalProfileResponse */ profile: GetUserInternalProfileResponseProfile; /** * * @type {APIStatus} * @memberof GetUserInternalProfileResponse */ status: APIStatus; } /** * Check if a given object implements the GetUserInternalProfileResponse interface. */ export declare function instanceOfGetUserInternalProfileResponse(value: object): value is GetUserInternalProfileResponse; export declare function GetUserInternalProfileResponseFromJSON(json: any): GetUserInternalProfileResponse; export declare function GetUserInternalProfileResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserInternalProfileResponse; export declare function GetUserInternalProfileResponseToJSON(json: any): GetUserInternalProfileResponse; export declare function GetUserInternalProfileResponseToJSONTyped(value?: GetUserInternalProfileResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserInternalProfileResponse.d.ts.map