UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

41 lines 1.57 kB
/** * 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 CreateQuestionResultResponse */ export interface CreateQuestionResultResponse { /** * * @type {APIStatus} * @memberof CreateQuestionResultResponse */ status: APIStatus; /** * * @type {QuestionResult} * @memberof CreateQuestionResultResponse */ questionResult: QuestionResult; } /** * Check if a given object implements the CreateQuestionResultResponse interface. */ export declare function instanceOfCreateQuestionResultResponse(value: object): value is CreateQuestionResultResponse; export declare function CreateQuestionResultResponseFromJSON(json: any): CreateQuestionResultResponse; export declare function CreateQuestionResultResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateQuestionResultResponse; export declare function CreateQuestionResultResponseToJSON(json: any): CreateQuestionResultResponse; export declare function CreateQuestionResultResponseToJSONTyped(value?: CreateQuestionResultResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateQuestionResultResponse.d.ts.map