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

import Foundation
import Get
import URLQueryEncoder

extension Paths.LivingRadio.WithStationId {
    public var voteStatus: VoteStatus {
        VoteStatus(path: path + "/vote-status")
    }

    public struct VoteStatus {
        /// Path: `/api/living_radio/{station_id}/vote-status`
        public let path: String

        /// Get Station Id Vote Status
        public var get: Request<GenAPI.VoteStatusResponse> {
            Request(path: path, method: "GET", id: "studio_api_living_radio_api_get_station_id_vote_status")
        }
    }
}
