fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
90 lines • 2.48 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 PutAwardBadgeResponse
*/
export interface PutAwardBadgeResponse {
/**
*
* @type {Array<string>}
* @memberof PutAwardBadgeResponse
*/
notes?: Array<string>;
/**
*
* @type {Array<CommentUserBadgeInfo>}
* @memberof PutAwardBadgeResponse
*/
badges?: Array<CommentUserBadgeInfo>;
/**
*
* @type {APIStatus}
* @memberof PutAwardBadgeResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof PutAwardBadgeResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof PutAwardBadgeResponse
*/
code: string;
/**
*
* @type {string}
* @memberof PutAwardBadgeResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof PutAwardBadgeResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof PutAwardBadgeResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof PutAwardBadgeResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof PutAwardBadgeResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the PutAwardBadgeResponse interface.
*/
export declare function instanceOfPutAwardBadgeResponse(value: object): value is PutAwardBadgeResponse;
export declare function PutAwardBadgeResponseFromJSON(json: any): PutAwardBadgeResponse;
export declare function PutAwardBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutAwardBadgeResponse;
export declare function PutAwardBadgeResponseToJSON(json: any): PutAwardBadgeResponse;
export declare function PutAwardBadgeResponseToJSONTyped(value?: PutAwardBadgeResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PutAwardBadgeResponse.d.ts.map