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