fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
45 lines • 1.43 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.
*/
/**
*
* @export
* @interface DeletePageAPIResponse
*/
export interface DeletePageAPIResponse {
/**
*
* @type {string}
* @memberof DeletePageAPIResponse
*/
reason?: string;
/**
*
* @type {string}
* @memberof DeletePageAPIResponse
*/
code?: string;
/**
*
* @type {string}
* @memberof DeletePageAPIResponse
*/
status: string;
}
/**
* Check if a given object implements the DeletePageAPIResponse interface.
*/
export declare function instanceOfDeletePageAPIResponse(value: object): value is DeletePageAPIResponse;
export declare function DeletePageAPIResponseFromJSON(json: any): DeletePageAPIResponse;
export declare function DeletePageAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeletePageAPIResponse;
export declare function DeletePageAPIResponseToJSON(json: any): DeletePageAPIResponse;
export declare function DeletePageAPIResponseToJSONTyped(value?: DeletePageAPIResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=DeletePageAPIResponse.d.ts.map