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 { ModerationPageSearchProjected } from './ModerationPageSearchProjected'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface ModerationPageSearchResponse */ export interface ModerationPageSearchResponse { /** * * @type {Array<ModerationPageSearchProjected>} * @memberof ModerationPageSearchResponse */ pages: Array<ModerationPageSearchProjected>; /** * * @type {APIStatus} * @memberof ModerationPageSearchResponse */ status: APIStatus; } /** * Check if a given object implements the ModerationPageSearchResponse interface. */ export declare function instanceOfModerationPageSearchResponse(value: object): value is ModerationPageSearchResponse; export declare function ModerationPageSearchResponseFromJSON(json: any): ModerationPageSearchResponse; export declare function ModerationPageSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModerationPageSearchResponse; export declare function ModerationPageSearchResponseToJSON(json: any): ModerationPageSearchResponse; export declare function ModerationPageSearchResponseToJSONTyped(value?: ModerationPageSearchResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ModerationPageSearchResponse.d.ts.map