mirror of
https://github.com/jellyfin/jellyfin-sdk-swift.git
synced 2024-11-23 14:20:08 +00:00
14 lines
438 B
Swift
14 lines
438 B
Swift
|
// Generated by Create API
|
||
|
// https://github.com/CreateAPI/CreateAPI
|
||
|
|
||
|
import Foundation
|
||
|
import Get
|
||
|
import URLQueryEncoder
|
||
|
|
||
|
extension Paths {
|
||
|
/// Set item image.
|
||
|
static public func setItemImageByIndex(itemID: String, imageType: String, imageIndex: Int, _ body: Data? = nil) -> Request<Void> {
|
||
|
Request(method: "POST", url: "/Items/\(itemID)/Images/\(imageType)/\(imageIndex)", body: body, id: "SetItemImageByIndex")
|
||
|
}
|
||
|
}
|