fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
85 lines • 2.58 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 { CustomConfigParameters } from './CustomConfigParameters';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface UnBlockUserFromCommentResponse
*/
export interface UnBlockUserFromCommentResponse {
/**
*
* @type {APIStatus}
* @memberof UnBlockUserFromCommentResponse
*/
status: APIStatus;
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: boolean; }}
* @memberof UnBlockUserFromCommentResponse
*/
commentStatuses: {
[key: string]: boolean;
};
/**
*
* @type {string}
* @memberof UnBlockUserFromCommentResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof UnBlockUserFromCommentResponse
*/
code: string;
/**
*
* @type {string}
* @memberof UnBlockUserFromCommentResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof UnBlockUserFromCommentResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof UnBlockUserFromCommentResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof UnBlockUserFromCommentResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof UnBlockUserFromCommentResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the UnBlockUserFromCommentResponse interface.
*/
export declare function instanceOfUnBlockUserFromCommentResponse(value: object): value is UnBlockUserFromCommentResponse;
export declare function UnBlockUserFromCommentResponseFromJSON(json: any): UnBlockUserFromCommentResponse;
export declare function UnBlockUserFromCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnBlockUserFromCommentResponse;
export declare function UnBlockUserFromCommentResponseToJSON(json: any): UnBlockUserFromCommentResponse;
export declare function UnBlockUserFromCommentResponseToJSONTyped(value?: UnBlockUserFromCommentResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UnBlockUserFromCommentResponse.d.ts.map