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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Profiles.WithHandle {
    public var info: Info {
        Info(path: path + "/info")
    }

    public struct Info {
        /// Path: `/api/profiles/{handle}/info`
        public let path: String

        /// Get Artist Profile Info
        ///
        /// Get artist profile information from DynamoDB.
        /// 
        /// Returns the additional profile fields stored in DynamoDB.
        public var get: Request<GenAPI.ArtistProfileInfoSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_profiles_api_get_artist_profile_info")
        }
    }
}
