UNPKG

fastcomments-sdk

Version:

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

45 lines 1.56 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. */ /** * * @export * @interface GetCommentBanStatusResponse */ export interface GetCommentBanStatusResponse { /** * * @type {string} * @memberof GetCommentBanStatusResponse */ status: string; /** * * @type {string} * @memberof GetCommentBanStatusResponse */ emailDomain: string | null; /** * * @type {boolean} * @memberof GetCommentBanStatusResponse */ canIPBan: boolean | null; } /** * Check if a given object implements the GetCommentBanStatusResponse interface. */ export declare function instanceOfGetCommentBanStatusResponse(value: object): value is GetCommentBanStatusResponse; export declare function GetCommentBanStatusResponseFromJSON(json: any): GetCommentBanStatusResponse; export declare function GetCommentBanStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentBanStatusResponse; export declare function GetCommentBanStatusResponseToJSON(json: any): GetCommentBanStatusResponse; export declare function GetCommentBanStatusResponseToJSONTyped(value?: GetCommentBanStatusResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCommentBanStatusResponse.d.ts.map