UNPKG

fastcomments-sdk

Version:

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

41 lines 1.47 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 { UserBadge } from './UserBadge'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface APIGetUserBadgeResponse */ export interface APIGetUserBadgeResponse { /** * * @type {APIStatus} * @memberof APIGetUserBadgeResponse */ status: APIStatus; /** * * @type {UserBadge} * @memberof APIGetUserBadgeResponse */ userBadge: UserBadge; } /** * Check if a given object implements the APIGetUserBadgeResponse interface. */ export declare function instanceOfAPIGetUserBadgeResponse(value: object): value is APIGetUserBadgeResponse; export declare function APIGetUserBadgeResponseFromJSON(json: any): APIGetUserBadgeResponse; export declare function APIGetUserBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIGetUserBadgeResponse; export declare function APIGetUserBadgeResponseToJSON(json: any): APIGetUserBadgeResponse; export declare function APIGetUserBadgeResponseToJSONTyped(value?: APIGetUserBadgeResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=APIGetUserBadgeResponse.d.ts.map