UNPKG

fastcomments-sdk

Version:

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

84 lines 2.42 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 { ModerationUserSearchProjected } from './ModerationUserSearchProjected'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetSearchUsersResponse */ export interface GetSearchUsersResponse { /** * * @type {Array<ModerationUserSearchProjected>} * @memberof GetSearchUsersResponse */ users: Array<ModerationUserSearchProjected>; /** * * @type {APIStatus} * @memberof GetSearchUsersResponse */ status: APIStatus; /** * * @type {string} * @memberof GetSearchUsersResponse */ reason: string; /** * * @type {string} * @memberof GetSearchUsersResponse */ code: string; /** * * @type {string} * @memberof GetSearchUsersResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetSearchUsersResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetSearchUsersResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetSearchUsersResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetSearchUsersResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetSearchUsersResponse interface. */ export declare function instanceOfGetSearchUsersResponse(value: object): value is GetSearchUsersResponse; export declare function GetSearchUsersResponseFromJSON(json: any): GetSearchUsersResponse; export declare function GetSearchUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchUsersResponse; export declare function GetSearchUsersResponseToJSON(json: any): GetSearchUsersResponse; export declare function GetSearchUsersResponseToJSONTyped(value?: GetSearchUsersResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSearchUsersResponse.d.ts.map