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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Sunoverse {
    public var points: Points {
        Points(path: path + "/points")
    }

    public struct Points {
        /// Path: `/api/sunoverse/points`
        public let path: String

        /// Get Points
        ///
        /// Get a static array of points
        public var get: Request<GenAPI.PointsResponse> {
            Request(path: path, method: "GET", id: "studio_api_sunoverse_api_get_points")
        }
    }
}
