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

import Foundation
import Get
import URLQueryEncoder

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

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

        /// Update Artist Profile Info
        ///
        /// Update artist profile information in DynamoDB.
        /// 
        /// Updates the artist profile fields stored in DynamoDB.
        public func put(_ body: GenAPI.UpdateArtistProfileInfoSpec) -> Request<Void> {
            Request(path: path, method: "PUT", body: body, id: "studio_api_bots_profiles_api_update_artist_profile_info")
        }
    }
}
