fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
47 lines • 1.64 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 { UserBadge } from './UserBadge';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface APICreateUserBadgeResponse
*/
export interface APICreateUserBadgeResponse {
/**
*
* @type {APIStatus}
* @memberof APICreateUserBadgeResponse
*/
status: APIStatus;
/**
*
* @type {UserBadge}
* @memberof APICreateUserBadgeResponse
*/
userBadge: UserBadge;
/**
*
* @type {Array<string>}
* @memberof APICreateUserBadgeResponse
*/
notes?: Array<string>;
}
/**
* Check if a given object implements the APICreateUserBadgeResponse interface.
*/
export declare function instanceOfAPICreateUserBadgeResponse(value: object): value is APICreateUserBadgeResponse;
export declare function APICreateUserBadgeResponseFromJSON(json: any): APICreateUserBadgeResponse;
export declare function APICreateUserBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): APICreateUserBadgeResponse;
export declare function APICreateUserBadgeResponseToJSON(json: any): APICreateUserBadgeResponse;
export declare function APICreateUserBadgeResponseToJSONTyped(value?: APICreateUserBadgeResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=APICreateUserBadgeResponse.d.ts.map