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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen.WithGenId.ShareAsset {
    public func assetId(_ assetId: String) -> WithAssetId {
        WithAssetId(path: "\(path)/\(assetId)")
    }

    public struct WithAssetId {
        /// Path: `/api/gen/{gen_id}/share_asset/{asset_id}`
        public let path: String

        /// Get Share Asset
        ///
        /// Get the status of a share asset.
        public var get: Request<GenAPI.ShareAssetStatusSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_gen_api_get_share_asset")
        }
    }
}
