UNPKG

fastcomments-sdk

Version:

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

57 lines 2.25 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.instanceOfGetQuestionResultResponse = instanceOfGetQuestionResultResponse; exports.GetQuestionResultResponseFromJSON = GetQuestionResultResponseFromJSON; exports.GetQuestionResultResponseFromJSONTyped = GetQuestionResultResponseFromJSONTyped; exports.GetQuestionResultResponseToJSON = GetQuestionResultResponseToJSON; exports.GetQuestionResultResponseToJSONTyped = GetQuestionResultResponseToJSONTyped; const APIStatus_1 = require("./APIStatus"); const QuestionResult_1 = require("./QuestionResult"); /** * Check if a given object implements the GetQuestionResultResponse interface. */ function instanceOfGetQuestionResultResponse(value) { if (!('status' in value) || value['status'] === undefined) return false; if (!('questionResult' in value) || value['questionResult'] === undefined) return false; return true; } function GetQuestionResultResponseFromJSON(json) { return GetQuestionResultResponseFromJSONTyped(json, false); } function GetQuestionResultResponseFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'status': (0, APIStatus_1.APIStatusFromJSON)(json['status']), 'questionResult': (0, QuestionResult_1.QuestionResultFromJSON)(json['questionResult']), }; } function GetQuestionResultResponseToJSON(json) { return GetQuestionResultResponseToJSONTyped(json, false); } function GetQuestionResultResponseToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'status': (0, APIStatus_1.APIStatusToJSON)(value['status']), 'questionResult': (0, QuestionResult_1.QuestionResultToJSON)(value['questionResult']), }; } //# sourceMappingURL=GetQuestionResultResponse.js.map