winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

SearchResponseDeserializer.h (530B)


      1 // Copyright (c) Microsoft Corporation.
      2 // Licensed under the MIT License.
      3 #pragma once
      4 #include <cpprest/json.h>
      5 #include "Rest/Schema/1_0/Json/SearchResponseDeserializer.h"
      6 
      7 namespace AppInstaller::Repository::Rest::Schema::V1_4::Json
      8 {
      9     // Search Result Deserializer.
     10     struct SearchResponseDeserializer : public V1_0::Json::SearchResponseDeserializer
     11     {
     12     protected:
     13         std::optional<IRestClient::VersionInfo> DeserializeVersionInfo(const web::json::value& versionInfoJsonObject) const;
     14     };
     15 }