UNPKG

tuix-marketplace-api

Version:

This package facilitates the client request to tuix marketplace api

49 lines 1.33 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * Tuix Services * Tuix Services API * * The version of the OpenAPI document: 1.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.instanceOfErrorDTO = instanceOfErrorDTO; exports.ErrorDTOFromJSON = ErrorDTOFromJSON; exports.ErrorDTOFromJSONTyped = ErrorDTOFromJSONTyped; exports.ErrorDTOToJSON = ErrorDTOToJSON; exports.ErrorDTOToJSONTyped = ErrorDTOToJSONTyped; /** * Check if a given object implements the ErrorDTO interface. */ function instanceOfErrorDTO(value) { return true; } function ErrorDTOFromJSON(json) { return ErrorDTOFromJSONTyped(json, false); } function ErrorDTOFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { 'message': json['message'] == null ? undefined : json['message'], }; } function ErrorDTOToJSON(json) { return ErrorDTOToJSONTyped(json, false); } function ErrorDTOToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'message': value['message'], }; } //# sourceMappingURL=ErrorDTO.js.map