fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.53 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';
import type { QuestionResult } from './QuestionResult';
/**
*
* @export
* @interface GetQuestionResultResponse
*/
export interface GetQuestionResultResponse {
/**
*
* @type {APIStatus}
* @memberof GetQuestionResultResponse
*/
status: APIStatus;
/**
*
* @type {QuestionResult}
* @memberof GetQuestionResultResponse
*/
questionResult: QuestionResult;
}
/**
* Check if a given object implements the GetQuestionResultResponse interface.
*/
export declare function instanceOfGetQuestionResultResponse(value: object): value is GetQuestionResultResponse;
export declare function GetQuestionResultResponseFromJSON(json: any): GetQuestionResultResponse;
export declare function GetQuestionResultResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQuestionResultResponse;
export declare function GetQuestionResultResponseToJSON(json: any): GetQuestionResultResponse;
export declare function GetQuestionResultResponseToJSONTyped(value?: GetQuestionResultResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetQuestionResultResponse.d.ts.map