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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Sunosphere {
    public var creatorLocation: CreatorLocation {
        CreatorLocation(path: path + "/creator-location")
    }

    public struct CreatorLocation {
        /// Path: `/api/sunosphere/creator-location`
        public let path: String

        /// Get Song By Creator Location
        ///
        /// Returns a dictionary of: songs, available countries, cities, and decades
        public var get: Request<GenAPI.GetSongLocationsResponse> {
            Request(path: path, method: "GET", id: "studio_api_sunosphere_api_get_song_by_creator_location")
        }
    }
}
