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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Profiles.WithHandle {
    public var recentClips: RecentClips {
        RecentClips(path: path + "/recent_clips")
    }

    public struct RecentClips {
        /// Path: `/api/profiles/{handle}/recent_clips`
        public let path: String

        /// Get Artist Recent Clips
        public var get: Request<Void> {
            Request(path: path, method: "GET", id: "studio_api_bots_profiles_api_get_artist_recent_clips")
        }
    }
}
