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

import Foundation
import Get
import URLQueryEncoder

extension Paths.VideoGen {
    public var favorites: Favorites {
        Favorites(path: path + "/favorites")
    }

    public struct Favorites {
        /// Path: `/api/video_gen/favorites`
        public let path: String

        /// Get Favorites
        ///
        /// Get all favorited (is_liked=True) images and videos for the current user.
        public var get: Request<GenAPI.FavoritesResponse> {
            Request(path: path, method: "GET", id: "studio_api_video_generation_api_get_favorites")
        }
    }
}
