fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
47 lines • 1.63 kB
TypeScript
/**
* 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 AwardUserBadgeResponse
*/
export interface AwardUserBadgeResponse {
/**
*
* @type {Array<string>}
* @memberof AwardUserBadgeResponse
*/
notes?: Array<string>;
/**
*
* @type {Array<CommentUserBadgeInfo>}
* @memberof AwardUserBadgeResponse
*/
badges?: Array<CommentUserBadgeInfo>;
/**
*
* @type {APIStatus}
* @memberof AwardUserBadgeResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the AwardUserBadgeResponse interface.
*/
export declare function instanceOfAwardUserBadgeResponse(value: object): value is AwardUserBadgeResponse;
export declare function AwardUserBadgeResponseFromJSON(json: any): AwardUserBadgeResponse;
export declare function AwardUserBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AwardUserBadgeResponse;
export declare function AwardUserBadgeResponseToJSON(json: any): AwardUserBadgeResponse;
export declare function AwardUserBadgeResponseToJSONTyped(value?: AwardUserBadgeResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AwardUserBadgeResponse.d.ts.map