// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

/// The Search result class returns the search result, which is a key val
/// pair that key is the plan name and the search result is the value
public struct SearchResult: Codable, Equatable {
    public var result: [String: BaseSearchResult]

    public init(result: [String: BaseSearchResult]) {
        self.result = result
    }
}
