fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
58 lines • 1.68 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 { APIPage } from './APIPage';
/**
*
* @export
* @interface PatchPageAPIResponse
*/
export interface PatchPageAPIResponse {
/**
*
* @type {string}
* @memberof PatchPageAPIResponse
*/
reason?: string;
/**
*
* @type {string}
* @memberof PatchPageAPIResponse
*/
code?: string;
/**
*
* @type {number}
* @memberof PatchPageAPIResponse
*/
commentsUpdated?: number;
/**
*
* @type {APIPage}
* @memberof PatchPageAPIResponse
*/
page?: APIPage;
/**
*
* @type {string}
* @memberof PatchPageAPIResponse
*/
status: string;
}
/**
* Check if a given object implements the PatchPageAPIResponse interface.
*/
export declare function instanceOfPatchPageAPIResponse(value: object): value is PatchPageAPIResponse;
export declare function PatchPageAPIResponseFromJSON(json: any): PatchPageAPIResponse;
export declare function PatchPageAPIResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchPageAPIResponse;
export declare function PatchPageAPIResponseToJSON(json: any): PatchPageAPIResponse;
export declare function PatchPageAPIResponseToJSONTyped(value?: PatchPageAPIResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PatchPageAPIResponse.d.ts.map