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

import Foundation
import Get
import URLQueryEncoder

extension Paths {
    public static var profiles: Profiles {
        Profiles(path: "/api/profiles")
    }

    public struct Profiles {
        /// Path: `/api/profiles`
        public let path: String

        /// Update Artist Profile
        public func post(_ body: GenAPI.UpdateArtistProfileSpec) -> Request<GenAPI.UpdateArtistProfileResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_profiles_api_update_artist_profile")
        }

        /// Patch Artist Profile
        public func patch(_ body: GenAPI.ModifyArtistProfileSpec) -> Request<GenAPI.GetUserMeResponse> {
            Request(path: path, method: "PATCH", body: body, id: "studio_api_bots_profiles_api_patch_artist_profile")
        }
    }
}
