fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.69 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 { APIBannedUserWithMultiMatchInfo } from './APIBannedUserWithMultiMatchInfo';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetBanUsersFromComment200Response
*/
export interface GetBanUsersFromComment200Response {
/**
*
* @type {Array<APIBannedUserWithMultiMatchInfo>}
* @memberof GetBanUsersFromComment200Response
*/
bannedUsers: Array<APIBannedUserWithMultiMatchInfo>;
/**
*
* @type {string}
* @memberof GetBanUsersFromComment200Response
*/
code: string;
/**
*
* @type {APIStatus}
* @memberof GetBanUsersFromComment200Response
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof GetBanUsersFromComment200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof GetBanUsersFromComment200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetBanUsersFromComment200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetBanUsersFromComment200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetBanUsersFromComment200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetBanUsersFromComment200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetBanUsersFromComment200Response interface.
*/
export declare function instanceOfGetBanUsersFromComment200Response(value: object): value is GetBanUsersFromComment200Response;
export declare function GetBanUsersFromComment200ResponseFromJSON(json: any): GetBanUsersFromComment200Response;
export declare function GetBanUsersFromComment200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetBanUsersFromComment200Response;
export declare function GetBanUsersFromComment200ResponseToJSON(json: any): GetBanUsersFromComment200Response;
export declare function GetBanUsersFromComment200ResponseToJSONTyped(value?: GetBanUsersFromComment200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetBanUsersFromComment200Response.d.ts.map