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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Profiles {
    public var pinnedClips: PinnedClips {
        PinnedClips(path: path + "/pinned-clips")
    }

    public struct PinnedClips {
        /// Path: `/api/profiles/pinned-clips`
        public let path: String

        /// Get Pinned Clips
        ///
        /// Get all clips pinned by the current user.
        public var get: Request<GenAPI.PinnedClipsSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_profiles_api_get_pinned_clips")
        }
    }
}
