ChatPlexSDK-BS 1.0.1-v6.2.0
C++ ChatPlex BeatSaber SDK
Loading...
Searching...
No Matches
SearchResponse.hpp
1#pragma once
2
3#include "MapDetail.hpp"
4
6
7 using namespace System;
8
10 {
11 SearchResponse() = default;
12 CP_SDK_NO_COPYMOVE_CTORS(SearchResponse);
13
14 using Ptr = std::shared_ptr<SearchResponse>;
15
16 std::vector<MapDetail::Ptr> docs;
17
18 CP_SDK_JSON_OPERATORS_INLINE({
19 CP_SDK_JSON_SERIALIZE_OBJECT_ARRAY(docs);
20 },
21 {
22 CP_SDK_JSON_UNSERIALIZE_OBJECT_ARRAY(docs);
23 });
24 };
25
26}
BeatMaps aka BeatSaver models.
Definition MapDetail.hpp:12