fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
40 lines • 1.32 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 { APIStatus } from './APIStatus';
/**
*
* @export
* @interface CreateV1PageReact
*/
export interface CreateV1PageReact {
/**
*
* @type {string}
* @memberof CreateV1PageReact
*/
code?: string;
/**
*
* @type {APIStatus}
* @memberof CreateV1PageReact
*/
status: APIStatus;
}
/**
* Check if a given object implements the CreateV1PageReact interface.
*/
export declare function instanceOfCreateV1PageReact(value: object): value is CreateV1PageReact;
export declare function CreateV1PageReactFromJSON(json: any): CreateV1PageReact;
export declare function CreateV1PageReactFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateV1PageReact;
export declare function CreateV1PageReactToJSON(json: any): CreateV1PageReact;
export declare function CreateV1PageReactToJSONTyped(value?: CreateV1PageReact | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateV1PageReact.d.ts.map