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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Marketplace.Applications {
    public var my: My {
        My(path: path + "/my")
    }

    public struct My {
        /// Path: `/api/marketplace/applications/my`
        public let path: String

        /// List My Applications
        ///
        /// List current user's applications.
        public var get: Request<GenAPI.ApplicationListResponse> {
            Request(path: path, method: "GET", id: "studio_api_marketplace_api_list_my_applications")
        }
    }
}
