UNPKG

fastcomments-sdk

Version:

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

90 lines 2.56 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; import type { CommentUserBadgeInfo } from './CommentUserBadgeInfo'; /** * * @export * @interface PutAwardBadge200Response */ export interface PutAwardBadge200Response { /** * * @type {Array<string>} * @memberof PutAwardBadge200Response */ notes?: Array<string>; /** * * @type {Array<CommentUserBadgeInfo>} * @memberof PutAwardBadge200Response */ badges?: Array<CommentUserBadgeInfo>; /** * * @type {APIStatus} * @memberof PutAwardBadge200Response */ status: APIStatus; /** * * @type {string} * @memberof PutAwardBadge200Response */ reason: string; /** * * @type {string} * @memberof PutAwardBadge200Response */ code: string; /** * * @type {string} * @memberof PutAwardBadge200Response */ secondaryCode?: string; /** * * @type {number} * @memberof PutAwardBadge200Response */ bannedUntil?: number; /** * * @type {number} * @memberof PutAwardBadge200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof PutAwardBadge200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PutAwardBadge200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PutAwardBadge200Response interface. */ export declare function instanceOfPutAwardBadge200Response(value: object): value is PutAwardBadge200Response; export declare function PutAwardBadge200ResponseFromJSON(json: any): PutAwardBadge200Response; export declare function PutAwardBadge200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutAwardBadge200Response; export declare function PutAwardBadge200ResponseToJSON(json: any): PutAwardBadge200Response; export declare function PutAwardBadge200ResponseToJSONTyped(value?: PutAwardBadge200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PutAwardBadge200Response.d.ts.map