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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Billing {
    public var getChurnSurveyOptions: GetChurnSurveyOptions {
        GetChurnSurveyOptions(path: path + "/get-churn-survey-options")
    }

    public struct GetChurnSurveyOptions {
        /// Path: `/api/billing/get-churn-survey-options`
        public let path: String

        /// Get Churn Survey Options
        public var get: Request<GenAPI.ChurnSurveyOptionsResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_billing_api_get_churn_survey_options")
        }
    }
}
