UNPKG

fastcomments-sdk

Version:

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

41 lines 1.52 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 { APIStatus } from './APIStatus'; import type { CommentUserBadgeInfo } from './CommentUserBadgeInfo'; /** * * @export * @interface RemoveUserBadgeResponse */ export interface RemoveUserBadgeResponse { /** * * @type {Array<CommentUserBadgeInfo>} * @memberof RemoveUserBadgeResponse */ badges?: Array<CommentUserBadgeInfo>; /** * * @type {APIStatus} * @memberof RemoveUserBadgeResponse */ status: APIStatus; } /** * Check if a given object implements the RemoveUserBadgeResponse interface. */ export declare function instanceOfRemoveUserBadgeResponse(value: object): value is RemoveUserBadgeResponse; export declare function RemoveUserBadgeResponseFromJSON(json: any): RemoveUserBadgeResponse; export declare function RemoveUserBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemoveUserBadgeResponse; export declare function RemoveUserBadgeResponseToJSON(json: any): RemoveUserBadgeResponse; export declare function RemoveUserBadgeResponseToJSONTyped(value?: RemoveUserBadgeResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RemoveUserBadgeResponse.d.ts.map