fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.39 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 { CustomConfigParameters } from './CustomConfigParameters';
import type { APIStatus } from './APIStatus';
import type { CommentUserBadgeInfo } from './CommentUserBadgeInfo';
/**
*
* @export
* @interface PutRemoveBadgeResponse
*/
export interface PutRemoveBadgeResponse {
/**
*
* @type {Array<CommentUserBadgeInfo>}
* @memberof PutRemoveBadgeResponse
*/
badges?: Array<CommentUserBadgeInfo>;
/**
*
* @type {APIStatus}
* @memberof PutRemoveBadgeResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof PutRemoveBadgeResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof PutRemoveBadgeResponse
*/
code: string;
/**
*
* @type {string}
* @memberof PutRemoveBadgeResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof PutRemoveBadgeResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof PutRemoveBadgeResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof PutRemoveBadgeResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof PutRemoveBadgeResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the PutRemoveBadgeResponse interface.
*/
export declare function instanceOfPutRemoveBadgeResponse(value: object): value is PutRemoveBadgeResponse;
export declare function PutRemoveBadgeResponseFromJSON(json: any): PutRemoveBadgeResponse;
export declare function PutRemoveBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutRemoveBadgeResponse;
export declare function PutRemoveBadgeResponseToJSON(json: any): PutRemoveBadgeResponse;
export declare function PutRemoveBadgeResponseToJSONTyped(value?: PutRemoveBadgeResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PutRemoveBadgeResponse.d.ts.map