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

import Foundation
import Get
import URLQueryEncoder

extension Paths.V2.External.Oauth {
    public var alexaUserInfo: AlexaUserInfo {
        AlexaUserInfo(path: path + "/alexa-user-info")
    }

    public struct AlexaUserInfo {
        /// Path: `/api/v2/external/oauth/alexa-user-info`
        public let path: String

        /// Get Alexa User Info Via Oauth
        ///
        /// Get Alxa-specific user information through OAuth.
        public var get: Request<GenAPI.AlexaUserInfoSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_external_api_get_alexa_user_info_via_oauth")
        }
    }
}
