fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.45 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 { Moderator } from './Moderator';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetModeratorsResponse
*/
export interface GetModeratorsResponse {
/**
*
* @type {APIStatus}
* @memberof GetModeratorsResponse
*/
status: APIStatus;
/**
*
* @type {Array<Moderator>}
* @memberof GetModeratorsResponse
*/
moderators: Array<Moderator>;
}
/**
* Check if a given object implements the GetModeratorsResponse interface.
*/
export declare function instanceOfGetModeratorsResponse(value: object): value is GetModeratorsResponse;
export declare function GetModeratorsResponseFromJSON(json: any): GetModeratorsResponse;
export declare function GetModeratorsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetModeratorsResponse;
export declare function GetModeratorsResponseToJSON(json: any): GetModeratorsResponse;
export declare function GetModeratorsResponseToJSONTyped(value?: GetModeratorsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetModeratorsResponse.d.ts.map