UNPKG

fastcomments-sdk

Version:

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

41 lines 1.64 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 { ModerationUserSearchProjected } from './ModerationUserSearchProjected'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface ModerationUserSearchResponse */ export interface ModerationUserSearchResponse { /** * * @type {Array<ModerationUserSearchProjected>} * @memberof ModerationUserSearchResponse */ users: Array<ModerationUserSearchProjected>; /** * * @type {APIStatus} * @memberof ModerationUserSearchResponse */ status: APIStatus; } /** * Check if a given object implements the ModerationUserSearchResponse interface. */ export declare function instanceOfModerationUserSearchResponse(value: object): value is ModerationUserSearchResponse; export declare function ModerationUserSearchResponseFromJSON(json: any): ModerationUserSearchResponse; export declare function ModerationUserSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModerationUserSearchResponse; export declare function ModerationUserSearchResponseToJSON(json: any): ModerationUserSearchResponse; export declare function ModerationUserSearchResponseToJSONTyped(value?: ModerationUserSearchResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ModerationUserSearchResponse.d.ts.map