UNPKG

fastcomments-sdk

Version:

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

41 lines 1.61 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 { ModerationAPICommentLog } from './ModerationAPICommentLog'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface ModerationAPIGetLogsResponse */ export interface ModerationAPIGetLogsResponse { /** * * @type {Array<ModerationAPICommentLog>} * @memberof ModerationAPIGetLogsResponse */ logs: Array<ModerationAPICommentLog>; /** * * @type {APIStatus} * @memberof ModerationAPIGetLogsResponse */ status: APIStatus; } /** * Check if a given object implements the ModerationAPIGetLogsResponse interface. */ export declare function instanceOfModerationAPIGetLogsResponse(value: object): value is ModerationAPIGetLogsResponse; export declare function ModerationAPIGetLogsResponseFromJSON(json: any): ModerationAPIGetLogsResponse; export declare function ModerationAPIGetLogsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModerationAPIGetLogsResponse; export declare function ModerationAPIGetLogsResponseToJSON(json: any): ModerationAPIGetLogsResponse; export declare function ModerationAPIGetLogsResponseToJSONTyped(value?: ModerationAPIGetLogsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ModerationAPIGetLogsResponse.d.ts.map