UNPKG

fastcomments-sdk

Version:

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

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