UNPKG

fastcomments-sdk

Version:

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

90 lines 2.55 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 { UserBadge } from './UserBadge'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface CreateUserBadge200Response */ export interface CreateUserBadge200Response { /** * * @type {APIStatus} * @memberof CreateUserBadge200Response */ status: APIStatus; /** * * @type {UserBadge} * @memberof CreateUserBadge200Response */ userBadge: UserBadge; /** * * @type {Array<string>} * @memberof CreateUserBadge200Response */ notes?: Array<string>; /** * * @type {string} * @memberof CreateUserBadge200Response */ reason: string; /** * * @type {string} * @memberof CreateUserBadge200Response */ code: string; /** * * @type {string} * @memberof CreateUserBadge200Response */ secondaryCode?: string; /** * * @type {number} * @memberof CreateUserBadge200Response */ bannedUntil?: number; /** * * @type {number} * @memberof CreateUserBadge200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof CreateUserBadge200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof CreateUserBadge200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the CreateUserBadge200Response interface. */ export declare function instanceOfCreateUserBadge200Response(value: object): value is CreateUserBadge200Response; export declare function CreateUserBadge200ResponseFromJSON(json: any): CreateUserBadge200Response; export declare function CreateUserBadge200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserBadge200Response; export declare function CreateUserBadge200ResponseToJSON(json: any): CreateUserBadge200Response; export declare function CreateUserBadge200ResponseToJSONTyped(value?: CreateUserBadge200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateUserBadge200Response.d.ts.map