jellyfin-sdk-swift/docs/SearchAPI.md
jellyfin-bot a524873ad0 Add type-mappings
Update stable OpenAPI client
2021-06-05 07:51:11 +09:00

6.0 KiB

SearchAPI

All URIs are relative to http://localhost:8096

Method HTTP request Description
callGet GET /Search/Hints Gets the search hint result.

callGet

    open class func callGet(searchTerm: String, startIndex: Int? = nil, limit: Int? = nil, userId: String? = nil, includeItemTypes: [String]? = nil, excludeItemTypes: [String]? = nil, mediaTypes: [String]? = nil, parentId: String? = nil, isMovie: Bool? = nil, isSeries: Bool? = nil, isNews: Bool? = nil, isKids: Bool? = nil, isSports: Bool? = nil, includePeople: Bool? = nil, includeMedia: Bool? = nil, includeGenres: Bool? = nil, includeStudios: Bool? = nil, includeArtists: Bool? = nil, completion: @escaping (_ data: SearchHintResult?, _ error: Error?) -> Void)

Gets the search hint result.

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import JellyfinAPI

let searchTerm = "searchTerm_example" // String | The search term to filter on.
let startIndex = 987 // Int | Optional. The record index to start at. All items with a lower index will be dropped from the results. (optional)
let limit = 987 // Int | Optional. The maximum number of records to return. (optional)
let userId = "userId_example" // String | Optional. Supply a user id to search within a user's library or omit to search all. (optional)
let includeItemTypes = ["inner_example"] // [String] | If specified, only results with the specified item types are returned. This allows multiple, comma delimeted. (optional)
let excludeItemTypes = ["inner_example"] // [String] | If specified, results with these item types are filtered out. This allows multiple, comma delimeted. (optional)
let mediaTypes = ["inner_example"] // [String] | If specified, only results with the specified media types are returned. This allows multiple, comma delimeted. (optional)
let parentId = "parentId_example" // String | If specified, only children of the parent are returned. (optional)
let isMovie = true // Bool | Optional filter for movies. (optional)
let isSeries = true // Bool | Optional filter for series. (optional)
let isNews = true // Bool | Optional filter for news. (optional)
let isKids = true // Bool | Optional filter for kids. (optional)
let isSports = true // Bool | Optional filter for sports. (optional)
let includePeople = true // Bool | Optional filter whether to include people. (optional) (default to true)
let includeMedia = true // Bool | Optional filter whether to include media. (optional) (default to true)
let includeGenres = true // Bool | Optional filter whether to include genres. (optional) (default to true)
let includeStudios = true // Bool | Optional filter whether to include studios. (optional) (default to true)
let includeArtists = true // Bool | Optional filter whether to include artists. (optional) (default to true)

// Gets the search hint result.
SearchAPI.callGet(searchTerm: searchTerm, startIndex: startIndex, limit: limit, userId: userId, includeItemTypes: includeItemTypes, excludeItemTypes: excludeItemTypes, mediaTypes: mediaTypes, parentId: parentId, isMovie: isMovie, isSeries: isSeries, isNews: isNews, isKids: isKids, isSports: isSports, includePeople: includePeople, includeMedia: includeMedia, includeGenres: includeGenres, includeStudios: includeStudios, includeArtists: includeArtists) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
searchTerm String The search term to filter on.
startIndex Int Optional. The record index to start at. All items with a lower index will be dropped from the results. [optional]
limit Int Optional. The maximum number of records to return. [optional]
userId String Optional. Supply a user id to search within a user's library or omit to search all. [optional]
includeItemTypes **[String]** If specified, only results with the specified item types are returned. This allows multiple, comma delimeted. [optional]
excludeItemTypes **[String]** If specified, results with these item types are filtered out. This allows multiple, comma delimeted. [optional]
mediaTypes **[String]** If specified, only results with the specified media types are returned. This allows multiple, comma delimeted. [optional]
parentId String If specified, only children of the parent are returned. [optional]
isMovie Bool Optional filter for movies. [optional]
isSeries Bool Optional filter for series. [optional]
isNews Bool Optional filter for news. [optional]
isKids Bool Optional filter for kids. [optional]
isSports Bool Optional filter for sports. [optional]
includePeople Bool Optional filter whether to include people. [optional] [default to true]
includeMedia Bool Optional filter whether to include media. [optional] [default to true]
includeGenres Bool Optional filter whether to include genres. [optional] [default to true]
includeStudios Bool Optional filter whether to include studios. [optional] [default to true]
includeArtists Bool Optional filter whether to include artists. [optional] [default to true]

Return type

SearchHintResult

Authorization

CustomAuthentication

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase

[Back to top] [Back to API list] [Back to Model list] [Back to README]