UNPKG

fastcomments-sdk

Version:

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

41 lines 1.56 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 GetQuestionResultsResponse */ export interface GetQuestionResultsResponse { /** * * @type {APIStatus} * @memberof GetQuestionResultsResponse */ status: APIStatus; /** * * @type {Array<QuestionResult>} * @memberof GetQuestionResultsResponse */ questionResults: Array<QuestionResult>; } /** * Check if a given object implements the GetQuestionResultsResponse interface. */ export declare function instanceOfGetQuestionResultsResponse(value: object): value is GetQuestionResultsResponse; export declare function GetQuestionResultsResponseFromJSON(json: any): GetQuestionResultsResponse; export declare function GetQuestionResultsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQuestionResultsResponse; export declare function GetQuestionResultsResponseToJSON(json: any): GetQuestionResultsResponse; export declare function GetQuestionResultsResponseToJSONTyped(value?: GetQuestionResultsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetQuestionResultsResponse.d.ts.map