fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
77 lines • 2.2 kB
TypeScript
/**
* 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 UpdateTenant200Response
*/
export interface UpdateTenant200Response {
/**
*
* @type {APIStatus}
* @memberof UpdateTenant200Response
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof UpdateTenant200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof UpdateTenant200Response
*/
code: string;
/**
*
* @type {string}
* @memberof UpdateTenant200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof UpdateTenant200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof UpdateTenant200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof UpdateTenant200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof UpdateTenant200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the UpdateTenant200Response interface.
*/
export declare function instanceOfUpdateTenant200Response(value: object): value is UpdateTenant200Response;
export declare function UpdateTenant200ResponseFromJSON(json: any): UpdateTenant200Response;
export declare function UpdateTenant200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTenant200Response;
export declare function UpdateTenant200ResponseToJSON(json: any): UpdateTenant200Response;
export declare function UpdateTenant200ResponseToJSONTyped(value?: UpdateTenant200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UpdateTenant200Response.d.ts.map