fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.59 kB
TypeScript
/**
* 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 { ModerationAPIComment } from './ModerationAPIComment';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface ModerationAPICommentResponse
*/
export interface ModerationAPICommentResponse {
/**
*
* @type {ModerationAPIComment}
* @memberof ModerationAPICommentResponse
*/
comment: ModerationAPIComment;
/**
*
* @type {APIStatus}
* @memberof ModerationAPICommentResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the ModerationAPICommentResponse interface.
*/
export declare function instanceOfModerationAPICommentResponse(value: object): value is ModerationAPICommentResponse;
export declare function ModerationAPICommentResponseFromJSON(json: any): ModerationAPICommentResponse;
export declare function ModerationAPICommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModerationAPICommentResponse;
export declare function ModerationAPICommentResponseToJSON(json: any): ModerationAPICommentResponse;
export declare function ModerationAPICommentResponseToJSONTyped(value?: ModerationAPICommentResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=ModerationAPICommentResponse.d.ts.map