fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.57 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 { QuestionConfig } from './QuestionConfig';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface CreateQuestionConfigResponse
*/
export interface CreateQuestionConfigResponse {
/**
*
* @type {APIStatus}
* @memberof CreateQuestionConfigResponse
*/
status: APIStatus;
/**
*
* @type {QuestionConfig}
* @memberof CreateQuestionConfigResponse
*/
questionConfig: QuestionConfig;
}
/**
* Check if a given object implements the CreateQuestionConfigResponse interface.
*/
export declare function instanceOfCreateQuestionConfigResponse(value: object): value is CreateQuestionConfigResponse;
export declare function CreateQuestionConfigResponseFromJSON(json: any): CreateQuestionConfigResponse;
export declare function CreateQuestionConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateQuestionConfigResponse;
export declare function CreateQuestionConfigResponseToJSON(json: any): CreateQuestionConfigResponse;
export declare function CreateQuestionConfigResponseToJSONTyped(value?: CreateQuestionConfigResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateQuestionConfigResponse.d.ts.map