UNPKG

fastcomments-sdk

Version:

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

91 lines 2.6 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 { UserSearchResult } from './UserSearchResult'; import type { APIStatus } from './APIStatus'; import type { UserSearchSectionResult } from './UserSearchSectionResult'; /** * * @export * @interface SearchUsers200Response */ export interface SearchUsers200Response { /** * * @type {APIStatus} * @memberof SearchUsers200Response */ status: APIStatus; /** * * @type {Array<UserSearchSectionResult>} * @memberof SearchUsers200Response */ sections: Array<UserSearchSectionResult>; /** * * @type {Array<UserSearchResult>} * @memberof SearchUsers200Response */ users: Array<UserSearchResult>; /** * * @type {string} * @memberof SearchUsers200Response */ reason: string; /** * * @type {string} * @memberof SearchUsers200Response */ code: string; /** * * @type {string} * @memberof SearchUsers200Response */ secondaryCode?: string; /** * * @type {number} * @memberof SearchUsers200Response */ bannedUntil?: number; /** * * @type {number} * @memberof SearchUsers200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof SearchUsers200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof SearchUsers200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the SearchUsers200Response interface. */ export declare function instanceOfSearchUsers200Response(value: object): value is SearchUsers200Response; export declare function SearchUsers200ResponseFromJSON(json: any): SearchUsers200Response; export declare function SearchUsers200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchUsers200Response; export declare function SearchUsers200ResponseToJSON(json: any): SearchUsers200Response; export declare function SearchUsers200ResponseToJSONTyped(value?: SearchUsers200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SearchUsers200Response.d.ts.map