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