UNPKG

fastcomments-sdk

Version:

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

90 lines 2.48 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 CreateUserBadgeResponse */ export interface CreateUserBadgeResponse { /** * * @type {APIStatus} * @memberof CreateUserBadgeResponse */ status: APIStatus; /** * * @type {UserBadge} * @memberof CreateUserBadgeResponse */ userBadge: UserBadge; /** * * @type {Array<string>} * @memberof CreateUserBadgeResponse */ notes?: Array<string>; /** * * @type {string} * @memberof CreateUserBadgeResponse */ reason: string; /** * * @type {string} * @memberof CreateUserBadgeResponse */ code: string; /** * * @type {string} * @memberof CreateUserBadgeResponse */ secondaryCode?: string; /** * * @type {number} * @memberof CreateUserBadgeResponse */ bannedUntil?: number; /** * * @type {number} * @memberof CreateUserBadgeResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof CreateUserBadgeResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof CreateUserBadgeResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the CreateUserBadgeResponse interface. */ export declare function instanceOfCreateUserBadgeResponse(value: object): value is CreateUserBadgeResponse; export declare function CreateUserBadgeResponseFromJSON(json: any): CreateUserBadgeResponse; export declare function CreateUserBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserBadgeResponse; export declare function CreateUserBadgeResponseToJSON(json: any): CreateUserBadgeResponse; export declare function CreateUserBadgeResponseToJSONTyped(value?: CreateUserBadgeResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateUserBadgeResponse.d.ts.map