UNPKG

fastcomments-sdk

Version:

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

77 lines 2.28 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'; /** * * @export * @interface UpdateTenantUser200Response */ export interface UpdateTenantUser200Response { /** * * @type {APIStatus} * @memberof UpdateTenantUser200Response */ status: APIStatus; /** * * @type {string} * @memberof UpdateTenantUser200Response */ reason: string; /** * * @type {string} * @memberof UpdateTenantUser200Response */ code: string; /** * * @type {string} * @memberof UpdateTenantUser200Response */ secondaryCode?: string; /** * * @type {number} * @memberof UpdateTenantUser200Response */ bannedUntil?: number; /** * * @type {number} * @memberof UpdateTenantUser200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof UpdateTenantUser200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UpdateTenantUser200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UpdateTenantUser200Response interface. */ export declare function instanceOfUpdateTenantUser200Response(value: object): value is UpdateTenantUser200Response; export declare function UpdateTenantUser200ResponseFromJSON(json: any): UpdateTenantUser200Response; export declare function UpdateTenantUser200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTenantUser200Response; export declare function UpdateTenantUser200ResponseToJSON(json: any): UpdateTenantUser200Response; export declare function UpdateTenantUser200ResponseToJSONTyped(value?: UpdateTenantUser200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateTenantUser200Response.d.ts.map