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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Mobile.V1 {
    public var discover: Discover {
        Discover(path: path + "/discover")
    }

    public struct Discover {
        /// Path: `/api/mobile/v1/discover`
        public let path: String

        /// Get Mobile V1 Discover
        ///
        /// Get the discover (homepage) sections for mobile.
        public var get: Request<GenAPI.MobileDiscoverSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_mobile_api_get_mobile_v1_discover")
        }
    }
}
