fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
77 lines • 2.31 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 DeleteFeedPostPublicResponse
*/
export interface DeleteFeedPostPublicResponse {
/**
*
* @type {APIStatus}
* @memberof DeleteFeedPostPublicResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof DeleteFeedPostPublicResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof DeleteFeedPostPublicResponse
*/
code: string;
/**
*
* @type {string}
* @memberof DeleteFeedPostPublicResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof DeleteFeedPostPublicResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof DeleteFeedPostPublicResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof DeleteFeedPostPublicResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof DeleteFeedPostPublicResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the DeleteFeedPostPublicResponse interface.
*/
export declare function instanceOfDeleteFeedPostPublicResponse(value: object): value is DeleteFeedPostPublicResponse;
export declare function DeleteFeedPostPublicResponseFromJSON(json: any): DeleteFeedPostPublicResponse;
export declare function DeleteFeedPostPublicResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteFeedPostPublicResponse;
export declare function DeleteFeedPostPublicResponseToJSON(json: any): DeleteFeedPostPublicResponse;
export declare function DeleteFeedPostPublicResponseToJSONTyped(value?: DeleteFeedPostPublicResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=DeleteFeedPostPublicResponse.d.ts.map