UNPKG

fastcomments-sdk

Version:

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

84 lines 2.63 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 { APIModerateUserBanPreferences } from './APIModerateUserBanPreferences'; import type { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetUserBanPreference200Response */ export interface GetUserBanPreference200Response { /** * * @type {APIModerateUserBanPreferences} * @memberof GetUserBanPreference200Response */ preferences: APIModerateUserBanPreferences | null; /** * * @type {APIStatus} * @memberof GetUserBanPreference200Response */ status: APIStatus; /** * * @type {string} * @memberof GetUserBanPreference200Response */ reason: string; /** * * @type {string} * @memberof GetUserBanPreference200Response */ code: string; /** * * @type {string} * @memberof GetUserBanPreference200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetUserBanPreference200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetUserBanPreference200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetUserBanPreference200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetUserBanPreference200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetUserBanPreference200Response interface. */ export declare function instanceOfGetUserBanPreference200Response(value: object): value is GetUserBanPreference200Response; export declare function GetUserBanPreference200ResponseFromJSON(json: any): GetUserBanPreference200Response; export declare function GetUserBanPreference200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserBanPreference200Response; export declare function GetUserBanPreference200ResponseToJSON(json: any): GetUserBanPreference200Response; export declare function GetUserBanPreference200ResponseToJSONTyped(value?: GetUserBanPreference200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserBanPreference200Response.d.ts.map